1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// convenience methods
/**
* \brief Setup of the unit test reporting to the host machine
* \param param testName Human readable name of the test
* \param issueNum The mega65-core issue number that identifies the test issue
*/
void ;
/**
* \brief Report a successful test with a optional message
* \param msg Description of the successful test (NULL uses global testName)
*/
void ;
/**
* \brief Report a failed test with a optional message
* \param msg Description of the failed test (NULL uses global testName)
*/
void ;
/**
* \brief Finish test procedure and tell m65 to exit
*/
void ;
// low level functions
/**
* \brief Reports unit test result to the host machine
* \param issue The issue number that identifies the test issue
* \param sub The sub issue number (for multiple tests per issue)
* \param status The test status to be sent
*/
void ;
/**
* \brief Reports current test name to the host machine
* \param name The human-readable name of the current test
*/
void ;
/**
* \brief Logs a message on the host machine
* \param msg The message to be logged
*/
void ;