TsSrs.h
Go to the documentation of this file.
1 #ifndef TS_SRS_H
2 #define TS_SRS_H
3 
4 #include <cppunit/extensions/HelperMacros.h>
5 
6 class TsSrs : public CPPUNIT_NS::TestFixture
7 {
8 
9  protected:
10 
11  void tcInitialization();
12 
13  void tcSRSManager();
14 
15  void tcSRSConvertion();
16 
17  void tcSRSClear();
18 
19  public :
20 
21  //! It sets the environment for a test case (actually a method).
22  void setUp();
23 
24  //! It finalizes the environment after a test case (actually a method) had run.
25  void tearDown();
26 
28 
29  CPPUNIT_TEST( tcSRSManager );
30 
31  CPPUNIT_TEST( tcSRSConvertion );
32 
33  CPPUNIT_TEST( tcSRSClear );
34 
36 };
37 
38 #endif
39 
CPPUNIT_TEST_SUITE_END()
CPPUNIT_TEST_SUITE(TsSrs)
Definition: TsSrs.h:6
CPPUNIT_TEST(tcSRSManager)
void tcInitialization()
void tearDown()
It finalizes the environment after a test case (actually a method) had run.
void setUp()
It sets the environment for a test case (actually a method).