author | William Roberts <williamr@symbian.org> |
Fri, 23 Jul 2010 11:57:06 +0100 | |
branch | GCC_SURGE |
changeset 46 | 0a3770c1cffe |
parent 45 | 4b03adbd26ca |
permissions | -rw-r--r-- |
#include <vector> #include <algorithm> #include "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); }