Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygen_template.cpp
Go to the documentation of this file.
00001 #include <vector> 00002 #include <algorithm> 00003 00004 #include "cppunit/cppunit_proxy.h" 00005 00006 #if !defined (STLPORT) || defined(_STLP_USE_NAMESPACES) 00007 using namespace std; 00008 #endif 00009 00010 // 00011 // TestCase class 00012 // 00013 class Test : public CPPUNIT_NS::TestCase 00014 { 00015 CPPUNIT_TEST_SUITE(Test); 00016 CPPUNIT_TEST(test); 00017 CPPUNIT_TEST_SUITE_END(); 00018 00019 protected: 00020 void test(); 00021 }; 00022 00023 CPPUNIT_TEST_SUITE_REGISTRATION(Test); 00024 00025 // 00026 // tests implementation 00027 // 00028 void Test::test() 00029 { 00030 CPPUNIT_ASSERT(true); 00031 } Generated on Mon May 28 2012 04:35:02 for ReactOS by
1.7.6.1
|