various fixes
- removed experimental test lib - fixed watch not outputting errors - updated examples - added TODOs for when standard is made public
This commit is contained in:
parent
32acd5e888
commit
e7433e42db
9 changed files with 16 additions and 18 deletions
|
@ -1,10 +1,10 @@
|
|||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include "../../clib/test.h"
|
||||
|
||||
void test_it_works() {
|
||||
assert_eq_int(2 + 2, 4);
|
||||
assert(2 + 2 == 4);
|
||||
}
|
||||
|
||||
void test_it_fails() {
|
||||
assert_eq_int(2 + 2, 5);
|
||||
assert(2 + 2 == 5);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue