blob: 204b3216a4e885ae708507a10a0457ecd75d1b75 (
plain)
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
62
63
64
65
66
67
68
|
/**
* @file minunit.h
* @brief Minimal unit testing framework for C
* @author Zed Shaw
*
* @details
* This unit testing framework comes from Zed Shaw's book Learn C The Hard
* Way, and are evolved from the "minunit" code snippets by Jera Design. I've
* added a mu_test_missing() macro to deal with missing unit tests.
*
* @sa dbg.h
*/
#undef NDEBUG
#ifndef _minunit_h
#define _minunit_h
#include "dbg.h"
#include <stdlib.h>
/**
* Start the unit testing suite by creating an empty message
*/
#define mu_suite_start() char *message = NULL
/**
* Check a condition and log the message as an error if it fails
*/
#define mu_assert(test, message) if (!(test)) { log_err(message); return message; }
/**
* Run a test function, return the message if there is one, increment
* tests_run
*/
#define mu_run_test(test) debug("\n-----%s", " " #test); \
message = test(); tests_run++; if (message) return message;
/**
* Definition of main function for the test framework. Defines the output
* presented to stdout/stderr and runs all_tests function provided by "name"
*/
#define RUN_TESTS(name) int main(int argc, char *argv[]) {\
argc = 1; \
debug("\n-----\nRUNNING: %s", argv[0]);\
printf("----\nRUNNING: %s\n", argv[0]);\
char *result = name();\
if (result != 0) {\
printf("\033[91mFAILED:\033[0m %s\n", result);\
}\
else {\
printf("ALL TESTS \033[92mPASSED\033[0m\n");\
}\
printf("Tests run: %d\n", tests_run);\
exit(result != 0);\
}
/**
* Log a warning to stdout when a test is missing and reduce tests_run by 1.
*/
#define mu_test_missing() printf("\033[33;1mWARNING: Test missing\033[0m\n");\
tests_run--;
/**
* Global counter for the number of tests that have been run.
*/
int tests_run;
#endif
|