TestCPU.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00027
00028 #ifndef __TEST_CPU_H__
00029 # define __TEST_CPU_H__
00030
00031
00032
00033
00034 # include <cppunit/extensions/HelperMacros.h>
00035
00036
00037
00038
00039 # define PARCOMPMARK_TEST
00040 # include "../../include/PCMCPU.h"
00041 # undef PARCOMPMARK_TEST
00042
00043
00044
00045
00046 using namespace ParCompMark;
00047
00048 namespace ParCompMarkTest
00049 {
00050
00056 class TestCPU:public CppUnit::TestFixture
00057 {
00058
00059
00061 CPPUNIT_TEST_SUITE(TestCPU);
00062
00063
00065 CPPUNIT_TEST(test_constructor_cstd__string_cOutputNode__NodeType);
00066 CPPUNIT_TEST(test_destructor);
00067 CPPUNIT_TEST(test_refreshData);
00068 CPPUNIT_TEST(test_parseXML_TiXmlElement_p);
00069
00070
00072 CPPUNIT_TEST_SUITE_END();
00073
00074 public:
00075
00077 void setUp();
00078
00080 void tearDown();
00081
00082 protected:
00083
00084
00085
00086
00087
00091 void test_constructor_cstd__string_cOutputNode__NodeType();
00092
00096 void test_destructor();
00097
00098
00099
00100
00101
00105 void test_parseXML_TiXmlElement_p();
00106
00107
00108
00109
00110
00114 void test_refreshData();
00115
00116 };
00117
00118 }
00119
00120 #endif