EmbeddedUnit
RepeatedTest.h
Go to the documentation of this file.
1 
34 #ifndef __REPEATEDTEST_H__
35 #define __REPEATEDTEST_H__
36 
37 typedef struct __RepeatedTest RepeatedTest;
38 typedef struct __RepeatedTest* RepeatedTestRef; /*downward compatible*/
39 
41  TestImplement* isa;
42  Test* test;
43  int timesRepeat;
44 };
45 
46 extern const TestImplement RepeatedTestImplement;
47 
48 #define new_RepeatedTest(test,tmrp)\
49  {\
50  (TestImplement*)&RepeatedTestImplement,\
51  (Test*)test,\
52  tmrp,\
53  }
54 
55 #endif/*__REPEATEDTEST_H__*/
Definition: Test.h:56