built and started to test test_context()

This commit is contained in:
jlamothe
2023-11-15 23:46:25 +00:00
parent b9cac45eba
commit ef00063ba3
6 changed files with 272 additions and 2 deletions

View File

@@ -76,4 +76,11 @@ extern void append_test_log(
const char * // the message to append
);
// Gives additional context for a test
extern void test_context(
TestState *, // the current state
const char *, // a description of the context
void (*)(TestState *) // the actual test
);
//jl