option for multiple inputs
This commit is contained in:
parent
cbd6eb52b1
commit
a2868c8783
10 changed files with 78 additions and 44 deletions
15
example/simple/main.c
Normal file
15
example/simple/main.c
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue