C++ main module for emicrom Package  1.0
EMM_MatterTest.h
Go to the documentation of this file.
1 #ifndef EMM_MatterTest_H
2 #define EMM_MatterTest_H
3 
4 #include "EMM_Test.h"
5 
6 #include "EMM_Matter.h"
7 
17 class EMM_MatterTest : public EMM_Test {
18 
20  // ATTRIBUTES
21 
22 
23 public:
24 
25 
26 protected:
27  // METHODS
28 
29  // CONSTRUCTORS
30 
33  EMM_MatterTest(void);
34 
35 
36 
37  // DESTRUCTORS
38 
39 
42  virtual ~EMM_MatterTest(void);
43 
44 
45 
46 public:
49  inline static SP::EMM_MatterTest New() {
50  SP::EMM_MatterTest p(new EMM_MatterTest(),EMM_MatterTest::Delete());
51  p->setThis(p);
52  return p;
53  };
54 
55 
56 
57 
58 
62  virtual tBoolean test(const CORE_Run& runner,const map<tString,tString>& options) const;
63 
64 
65 private:
66 
67 
68 
69 
77  tBoolean testIO() const;
81  tBoolean testANIFile() const;
85  tBoolean testHEMatter() const;
86 
87 };
88 
89 #endif
EMM_MatterTest(void)
create
Definition: EMM_MatterTest.cpp:13
This class is a Run class for Common package.
Definition: CORE_Run.h:38
static SP::EMM_MatterTest New()
create a test class
Definition: EMM_MatterTest.h:49
tBoolean testANIFile() const
test the anisotropy loading directions
Definition: EMM_MatterTest.cpp:254
virtual ~EMM_MatterTest(void)
destroy
Definition: EMM_MatterTest.cpp:16
#define tBoolean
Definition: types.h:139
This class is a test class for E-MicromM package.
Definition: EMM_Test.h:25
DEFINE_SPTR(EMM_MatterTest)
tBoolean testIO() const
test the loading & saving routine files
Definition: EMM_MatterTest.cpp:112
virtual tBoolean test(const CORE_Run &runner, const map< tString, tString > &options) const
make the test
Definition: EMM_MatterTest.cpp:20
SP_OBJECT(EMM_MatterTest)
tBoolean testAdimensionize() const
test the adimsionizing of matters attributes
Definition: EMM_MatterTest.cpp:69
tBoolean testHEMatter() const
test the hyper elastic matter
Definition: EMM_MatterTest.cpp:478
This class is a test class for testing EMM_Matter classes.
Definition: EMM_MatterTest.h:17
class Free introduced for deleting a smart pointer
Definition: CORE_Object.h:141