C++ main module for emicrom Package  1.0
EMM_MorseArrayTest.h
Go to the documentation of this file.
1 #ifndef EMM_MorseArrayTest_H
2 #define EMM_MorseArrayTest_H
3 
4 #include "EMM_Test.h"
5 
6 
16 class EMM_MorseArrayTest : public EMM_Test {
17 
19  // ATTRIBUTES
20 
21 
22 public:
23 
24 
25 protected:
26  // METHODS
27 
28  // CONSTRUCTORS
29 
32  EMM_MorseArrayTest(void);
33 
34 
35 
36  // DESTRUCTORS
37 
38 
41  virtual ~EMM_MorseArrayTest(void);
42 
43 
44 
45 public:
48  inline static SP::EMM_MorseArrayTest New() {
49  SP::EMM_MorseArrayTest p(new EMM_MorseArrayTest(),EMM_MorseArrayTest::Delete());
50  p->setThis(p);
51  return p;
52  };
53 
54 
55 
56 
57 
61  virtual tBoolean test(const CORE_Run& runner,const map<tString,tString>& options) const;
62 
63 
64 private:
65 
66 
67 
68 };
69 
70 #endif
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
virtual ~EMM_MorseArrayTest(void)
destroy
Definition: EMM_MorseArrayTest.cpp:11
static SP::EMM_MorseArrayTest New()
create a test class
Definition: EMM_MorseArrayTest.h:48
virtual tBoolean test(const CORE_Run &runner, const map< tString, tString > &options) const
make the test
Definition: EMM_MorseArrayTest.cpp:15
DEFINE_SPTR(EMM_MorseArrayTest)
This class is a test class for testing EMM_MorseArray classes.
Definition: EMM_MorseArrayTest.h:16
EMM_MorseArrayTest(void)
create
Definition: EMM_MorseArrayTest.cpp:8
SP_OBJECT(EMM_MorseArrayTest)
class Free introduced for deleting a smart pointer
Definition: CORE_Object.h:141