TestNetwork.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_NETWORK_H__
00029 # define __TEST_NETWORK_H__
00030
00031
00032
00033
00034 # include <cppunit/extensions/HelperMacros.h>
00035
00036
00037
00038
00039 # define PARCOMPMARK_TEST
00040 # include "../../include/PCMNetwork.h"
00041 # undef PARCOMPMARK_TEST
00042
00043
00044
00045
00046 using namespace ParCompMark;
00047
00048 namespace ParCompMarkTest
00049 {
00050
00056 class TestNetwork:public CppUnit::TestFixture
00057 {
00058
00059
00061 CPPUNIT_TEST_SUITE(TestNetwork);
00062
00063
00065 CPPUNIT_TEST(test_constructor_cstd__string);
00066 CPPUNIT_TEST(test_destructor);
00067 CPPUNIT_TEST(test_getIP);
00068 CPPUNIT_TEST(test_getHostName);
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();
00092
00096 void test_destructor();
00097
00098
00099
00100
00101
00105 void test_getIP();
00106
00110 void test_getHostName();
00111
00112 };
00113
00114 }
00115
00116 #endif