OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / ndk / tests / device / test-stlport / unit / _template.cpp
1 #include <vector>
2 #include <algorithm>
3
4 #include "cppunit/cppunit_proxy.h"
5
6 #if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES)
7 using namespace std;
8 #endif
9
10 //
11 // TestCase class
12 //
13 class Test : public CPPUNIT_NS::TestCase
14 {
15   CPPUNIT_TEST_SUITE(Test);
16   CPPUNIT_TEST(test);
17   CPPUNIT_TEST_SUITE_END();
18
19 protected:
20   void test();
21 };
22
23 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
24
25 //
26 // tests implementation
27 //
28 void Test::test()
29 {
30   CPPUNIT_ASSERT(true);
31 }