option for multiple inputs

This commit is contained in:
matthieu.jolimaitre 2022-09-24 21:54:34 +02:00
parent cbd6eb52b1
commit a2868c8783
10 changed files with 78 additions and 44 deletions

15
example/simple/main.c Normal file
View file

@ -0,0 +1,15 @@
#include <stdio.h>
#include "../../test.h"
int main() {
int a;
printf("hello, world!! %d\n", a);
}
void test_it_works() {
assert_eq_int(2 + 2, 4);
}
void test_it_fails() {
assert_eq_int(2 + 2, 5);
}