LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
RUnit_Test.h
1 #ifndef RUNIT_TEST_H_
2 #define RUNIT_TEST_H_
3 
4 #include <string>
5 
6 #include "TestResult.h"
7 
8 namespace RUnit
9 {
10 
11 struct Test
12 {
13  RU_FUNCPTR target;
14  std::string name;
15  TestResult result;
16 };
17 
18 }
19 
20 #endif