forked from bvdberg/ctest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
75 lines (60 loc) · 2.49 KB
/
README
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
69
70
71
72
73
74
ctest is a unit test framework for software written in C.
FEATURES:
- adding tests with minimal hassle (no manual adding to suites or testlists!)
- supports suites of tests
- supports setup() teardown() per test
- output format not messed up when tests fail, so easy to parse.
- displays elapsed time, so you can keep your tests fast
- uses coloring for easy error recognition
- only use coloring if output goes to terminal (not file/process)
- it's small (a little over 300 lines of code!)
- it's easy to integrate (only 1 header file)
- has SKIP option to skip certain test (no commenting test out anymore)
----------------------------------------------------------------------------
test example
CTEST(suite, test1) {
ASSERT_STR("foo", "foo");
}
CTEST(suite, test2) {
ASSERT_EQUAL(1, 2);
}
NO further typing is needed! ctest does the rest.
----------------------------------------------------------------------------
example output when running ctest:
$ ./test
TEST 1/2 suite1:test1 [OK]
TEST 2/2 suite1:test2 [FAIL]
ERR: mytests.c:4 expected 1, got 2
RESULTS: 2 tests (1 ok, 1 failed, 0 skipped) ran in 1 ms
There can be one argument to: ./test <suite>.
for example:
$ ./test timer
will run all tests from suites starting with 'timer'
NOTE: when piping output to a file/process, ctest will not color the output
----------------------------------------------------------------------------
Fixtures:
A testcase with a setup()/teardown() is described below. An unsigned
char buffer is malloc-ed before each test in the suite and freed afterwards.
CTEST_DATA(mytest) {
unsigned char* buffer;
};
NOTE: the mytest_data struct is available in setup/teardown/run functions as 'data'
CTEST_SETUP(mytest) {
data->buffer = (unsigned char*)malloc(1024);
}
CTEST_TEARDOWN(mytest) {
free(data->buffer);
}
NOTE: setup will be called before this test (and ony other test in the same suite)
NOTE: CTEST_LOG() can be used to log warnings consistent with the normal output format
CTEST2(mytest, test1) {
CTEST_LOG("%s() data=%p buffer=%p", __func__, data, data->buffer);
}
NOTE: teardown will be called after the test completes
NOTE: It's possible to only have a setup() or teardown()
----------------------------------------------------------------------------
Skipping:
Instead of commenting out a test (and subsequently never remembering to turn it
back on, ctest allows skipping of tests. Skipped tests are still shown when running
tests, but not run. To skip a test add _SKIP:
CTEST_SKIP(..) or CTEST2_SKIP(..)