ReactOS 0.4.15-dev-8052-gc0e3179
_template.cpp
Go to the documentation of this file.
1#include <vector>
2#include <algorithm>
3
5
6#if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES)
7using namespace std;
8#endif
9
10//
11// TestCase class
12//
13class Test : public CPPUNIT_NS::TestCase
14{
18
19protected:
20 void test();
21};
22
24
25//
26// tests implementation
27//
29{
30 CPPUNIT_ASSERT(true);
31}
CPPUNIT_TEST_SUITE(Test)
void test()
Definition: _template.cpp:28
CPPUNIT_TEST_SUITE_END()
CPPUNIT_TEST(test)
#define CPPUNIT_TEST_SUITE_REGISTRATION(X)
Definition: cppunit_mini.h:193
#define CPPUNIT_ASSERT(X)
Definition: cppunit_mini.h:200
Definition: features.h:417