EmbeddedUnit
TestRunner.h
Go to the documentation of this file.
1 
34 #ifndef __TESTRUNNER_H__
35 #define __TESTRUNNER_H__
36 
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
41 void TestRunner_start(void);
42 void TestRunner_runTest(Test* test);
43 void TestRunner_end(void);
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
49 #endif/*__TESTRUNNER_H__*/
Definition: Test.h:56