testing run_test_compare()

This commit is contained in:
jlamothe
2023-11-23 20:23:23 +00:00
parent c6dd2559f8
commit 17ad81f6b6
4 changed files with 115 additions and 0 deletions

View File

@@ -26,6 +26,7 @@
#include "initial-state.h"
#include "run-test.h"
#include "run-test-with.h"
#include "run-test-compare.h"
#include "append-test-log.h"
#include "test-context.h"
@@ -56,6 +57,7 @@ tests(TestState *s)
test_context_with(s, "initial state", test_initial_state, &scpy);
test_context(s, "run_test()", test_run_test);
test_context(s, "run_test_with()", test_run_test_with);
test_context(s, "run_test_compare()", test_run_test_compare);
test_context(s, "append_test_log()", test_append_test_log);
test_context(s, "test_context()", test_test_context);
}