LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
TestStatus.h
1 #ifndef RUNIT_TEST_STATUS_H_
2 #define RUNIT_TEST_STATUS_H_
3 
4 namespace RUnit
5 {
6 namespace TestStatus
7 {
8  enum Enum
9  {
10  PENDING,
11  IN_PROGRESS,
12  DONE
13  };
14 }
15 }
16 
17 #endif