WIP: testing run_test_with()

This commit is contained in:
jlamothe 2023-11-23 18:14:54 +00:00
parent daf189dc8d
commit 23ed415852
2 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,7 @@ HFILES=\
util.h\
initial-state.h\
run-test.h\
run-test-with.h\
append-test-log.h\
test-context.h
@ -29,6 +30,7 @@ OFILES=\
util.$O\
initial-state.$O\
run-test.$O\
run-test-with.$O\
append-test-log.$O\
test-context.$O

View File

@ -25,6 +25,7 @@
#include "../9unit.h"
#include "initial-state.h"
#include "run-test.h"
#include "run-test-with.h"
#include "append-test-log.h"
#include "test-context.h"
@ -54,6 +55,7 @@ tests(TestState *s)
test_context_with(s, "initial state", test_initial_state, &scpy);
test_context(s, "run_test()", test_run_test);
test_contest(s, "run_test_with()", test_run_test_with);
test_context(s, "append_test_log()", test_append_test_log);
test_context(s, "test_context()", test_test_context);
}