mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
32 lines
453 B
C++
32 lines
453 B
C++
#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);
|
|
}
|