|
cbmimage
|
Macros | |
| #define | TEST_ASSERT(_x) |
Functions | |
| void | TEST_i_ASSERT_FAIL (const char *expression, const char *file, int line) |
| void | dump (const void *buffer_void, unsigned int size) |
| #define TEST_ASSERT | ( | _x | ) |
check assertion
| [in] | _x | Condition that is to be tested. |
| void dump | ( | const void * | buffer_void, |
| unsigned int | size ) |
dump a buffer to stdout
| [in] | buffer_void | Pointer to the buffer that wants to be dumped |
| [in] | size | The number of bytes that are being dumped from the buffer. |
| void TEST_i_ASSERT_FAIL | ( | const char * | expression, |
| const char * | file, | ||
| int | line ) |
output and exit after an assertion failed
| [in] | expression | (string) the condition that was tested and did not hold |
| [in] | file | The name of the file the had the test in it |
| [in] | line | The line number in the file where the test was placed |