mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
A lightweight compositor for X11
7034883fbc
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com> |
||
---|---|---|
examples/trivial_tests | ||
meson.build | ||
README.md | ||
test.h |
test.h
A very simple, light weight, header only C unit test framework.
Features
- Easy to use, no dependencies, no setup needed.
- Keep test cases close to the code they test.
- Automatic registration of the test cases.
Setup
Just include the header
#include "test.h"
To enable the test cases in your code, compile your program with -DUNIT_TEST
.
Defining test cases
TEST_CASE(test_case_name) {
// Your code here
// ...
TEST_EQUAL(1, 0); // Fail
}
Run the test cases
In your main function, call run_tests
:
int main(int argc, char *const *argv) {
// necessary setup code
// ...
if (!run_tests(argc, argv)) {
// test failed
abort();
}
// cleanup
// usual code
}
Then, run your program with ./program --unittest
.