Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_CppTest / INC / cpptest-htmloutput.h
diff --git a/WCudaMSE/API_CppTest/INC/cpptest-htmloutput.h b/WCudaMSE/API_CppTest/INC/cpptest-htmloutput.h
new file mode 100755 (executable)
index 0000000..15042c3
--- /dev/null
@@ -0,0 +1,64 @@
+// ---\r
+//\r
+// $Id: cpptest-htmloutput.h,v 1.3 2005/06/08 08:08:06 nilu Exp $\r
+//\r
+// CppTest - A C++ Unit Testing Framework\r
+// Copyright (c) 2003 Niklas Lundell\r
+//\r
+// ---\r
+//\r
+// This library is free software; you can redistribute it and/or\r
+// modify it under the terms of the GNU Lesser General Public\r
+// License as published by the Free Software Foundation; either\r
+// version 2 of the License, or (at your option) any later version.\r
+//\r
+// This library is distributed in the hope that it will be useful,\r
+// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
+// Lesser General Public License for more details.\r
+//\r
+// You should have received a copy of the GNU Lesser General Public\r
+// License along with this library; if not, write to the\r
+// Free Software Foundation, Inc., 59 Temple Place - Suite 330,\r
+// Boston, MA 02111-1307, USA.\r
+//\r
+// ---\r
+\r
+/** \file */\r
+\r
+#ifndef CPPTEST_HTMLOUTPUT_H\r
+#define CPPTEST_HTMLOUTPUT_H\r
+\r
+#include <iostream>\r
+#include <string>\r
+\r
+#include "cpptest-collectoroutput.h"\r
+\r
+namespace Test\r
+{\r
+       /// \brief HTML output.\r
+       ///\r
+       /// %Output handler that creates a HTML table with detailed information\r
+       /// about all tests.\r
+       ///\r
+       class HtmlOutput : public CollectorOutput\r
+       {\r
+       public:\r
+               void generate(std::ostream& os, bool incl_ok_tests = true, \r
+                                         const std::string& name = "");\r
+               \r
+       private:\r
+               struct SuiteRow;\r
+               struct TestRow;\r
+               struct TestSuiteRow;\r
+               struct TestResult;\r
+               struct TestResultAll;\r
+               struct SuiteTestResult;\r
+\r
+               friend struct TestSuiteRow;\r
+       };\r
+       \r
+} // namespace Test\r
+               \r
+#endif // #ifndef CPPTEST_HTMLOUTPUT_H         \r
+\r