A lightweight compositor for X11
Go to file
Yuxuan Shui 63a0c61f63 Update README 2019-03-13 21:21:27 +00:00
examples/trivial_tests Parse command line arguments 2019-03-13 21:16:49 +00:00
README.md Update README 2019-03-13 21:21:27 +00:00
test.h Parse command line arguments 2019-03-13 21:16:49 +00:00

README.md

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.