16 lines
232 B
Markdown
16 lines
232 B
Markdown
# Testing library for C
|
|
|
|
Mostly specialized on unit tests library for improved testing experience
|
|
|
|
# Example:
|
|
|
|
```c
|
|
#include "ctest.h"
|
|
#include "funcs.h"
|
|
...
|
|
test(is_true(some_function()), "Function is true");
|
|
run_tests();
|
|
...
|
|
|
|
```
|