LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
TestResultType.h
1 #ifndef RUNIT_TEST_RESULT_TYPE_H_
2 #define RUNIT_TEST_RESULT_TYPE_H_
3 
4 namespace RUnit
5 {
6 namespace TestResultType
7 {
8 
9 enum Enum
10 {
11  NO_RESULT = 0x0,
12  SUCCESS = 0x1,
13  FAIL = 0x2
14 };
15 
16 }
17 }
18 
19 #endif