C++ main module for emicrom Package  1.0
EMM_CaseTest.h
Go to the documentation of this file.
1 #ifndef EMM_CaseTest_H
2 #define EMM_CaseTest_H
3 
4 #include "EMM_Test.h"
5 
6 
16 class EMM_CaseTest : public EMM_Test {
17 
19  // ATTRIBUTES
20 
21 
22 public:
23 
24 
25 protected:
26  // METHODS
27 
28  // CONSTRUCTORS
29 
32  EMM_CaseTest(void);
33 
34 
35 
36  // DESTRUCTORS
37 
38 
41  virtual ~EMM_CaseTest(void);
42 
43 
44 
45 public:
48  inline static SP::EMM_CaseTest New() {
49  SP::EMM_CaseTest p(new EMM_CaseTest(),EMM_CaseTest::Delete());
50  p->setThis(p);
51  return p;
52  };
53 
54 
55 
56 
57 
63  virtual tBoolean test(const CORE_Run& runner,const map<tString,tString>& options) const;
64 
65 
70  tBoolean testCase(const CORE_Run& runner,const tString& name) const;
71 
72 };
73 
74 #endif
EMM_CaseTest(void)
create
Definition: EMM_CaseTest.cpp:7
This class is a Run class for Common package.
Definition: CORE_Run.h:38
#define tBoolean
Definition: types.h:139
This class is a test class for E-MicromM package.
Definition: EMM_Test.h:25
static SP::EMM_CaseTest New()
create a test class
Definition: EMM_CaseTest.h:48
SP_OBJECT(EMM_CaseTest)
This class is a test class for testing interesting real cases.
Definition: EMM_CaseTest.h:16
tBoolean testCase(const CORE_Run &runner, const tString &name) const
execute the test case
Definition: EMM_CaseTest.cpp:52
DEFINE_SPTR(EMM_CaseTest)
#define tString
Definition: types.h:135
virtual ~EMM_CaseTest(void)
destroy
Definition: EMM_CaseTest.cpp:10
virtual tBoolean test(const CORE_Run &runner, const map< tString, tString > &options) const
make the test
Definition: EMM_CaseTest.cpp:14
class Free introduced for deleting a smart pointer
Definition: CORE_Object.h:141