epitls-pi/example/simple/test.c
JOLIMAITRE Matthieu e7433e42db various fixes
- removed experimental test lib
- fixed watch not outputting errors
- updated examples
- added TODOs for when standard is made public
2022-09-25 16:40:18 +02:00

10 lines
133 B
C

#include <assert.h>
#include <stdio.h>
void test_it_works() {
assert(2 + 2 == 4);
}
void test_it_fails() {
assert(2 + 2 == 5);
}