aboutsummaryrefslogtreecommitdiff
path: root/test/unit/_template.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/_template.cpp')
-rw-r--r--test/unit/_template.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/unit/_template.cpp b/test/unit/_template.cpp
deleted file mode 100644
index a2a86d6..0000000
--- a/test/unit/_template.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-#include <vector>
-#include <algorithm>
-
-#include "cppunit/cppunit_proxy.h"
-
-#if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES)
-using namespace std;
-#endif
-
-//
-// TestCase class
-//
-class Test : public CPPUNIT_NS::TestCase
-{
- CPPUNIT_TEST_SUITE(Test);
- CPPUNIT_TEST(test);
- CPPUNIT_TEST_SUITE_END();
-
-protected:
- void test();
-};
-
-CPPUNIT_TEST_SUITE_REGISTRATION(Test);
-
-//
-// tests implementation
-//
-void Test::test()
-{
- CPPUNIT_ASSERT(true);
-}