C++ main module for emicrom Package  1.0
EMM_FieldTest.h
Go to the documentation of this file.
1 #ifndef EMM_FieldTest_H
2 #define EMM_FieldTest_H
3 
4 #include "EMM_Test.h"
5 
6 
16 class EMM_FieldTest : public EMM_Test {
17 
19  // ATTRIBUTES
20 
21 
22 public:
23 
24 
25 protected:
26  // METHODS
27 
28  // CONSTRUCTORS
29 
32  EMM_FieldTest(void);
33 
34 
35 
36  // DESTRUCTORS
37 
38 
41  virtual ~EMM_FieldTest(void);
42 
43 
44 
45 public:
48  inline static SP::EMM_FieldTest New() {
49  SP::EMM_FieldTest p(new EMM_FieldTest(),EMM_FieldTest::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 
70  tBoolean testRealArray() const;
74  tBoolean testRealField() const;
75 
76 };
77 
78 #endif
static SP::EMM_FieldTest New()
create a test class
Definition: EMM_FieldTest.h:48
This class is a Run class for Common package.
Definition: CORE_Run.h:38
virtual tBoolean test(const CORE_Run &runner, const map< tString, tString > &options) const
make the test
Definition: EMM_FieldTest.cpp:17
#define tBoolean
Definition: types.h:139
This class is a test class for testing EMM_Field classes.
Definition: EMM_FieldTest.h:16
This class is a test class for E-MicromM package.
Definition: EMM_Test.h:25
SP_OBJECT(EMM_FieldTest)
tBoolean testRealArray() const
test EMM_RealArray
Definition: EMM_FieldTest.cpp:46
EMM_FieldTest(void)
create
Definition: EMM_FieldTest.cpp:10
DEFINE_SPTR(EMM_FieldTest)
virtual ~EMM_FieldTest(void)
destroy
Definition: EMM_FieldTest.cpp:13
tBoolean testRealField() const
test EMM_RealField
Definition: EMM_FieldTest.cpp:108
class Free introduced for deleting a smart pointer
Definition: CORE_Object.h:141