Move libcds 1.6.0 from SVN
[libcds.git] / tests / unit / _template.cpp
1 //$$CDS-header$$
2
3 #include <vector>
4 #include <algorithm>
5
6 #include "cppunit/cppunit_proxy.h"
7
8 #if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES)
9 using namespace std;
10 #endif
11
12 //
13 // TestCase class
14 //
15 class Test : public CPPUNIT_NS::TestCase
16 {
17   CPPUNIT_TEST_SUITE(Test);
18   CPPUNIT_TEST(test);
19   CPPUNIT_TEST_SUITE_END();
20
21 protected:
22   void test();
23 };
24
25 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
26
27 //
28 // tests implementation
29 //
30 void Test::test()
31 {
32   CPPUNIT_ASSERT(true);
33 }