implemented runTest

This commit is contained in:
jlamothe
2023-11-06 19:46:01 +00:00
parent b9c7fa84be
commit 519266e348
2 changed files with 25 additions and 6 deletions

View File

@@ -31,9 +31,11 @@ typedef enum TestResult
{
test_success,
test_failure,
test_pending
test_postponed
} TestResult;
extern void initTestState(TestState *);
extern void runTest(TestState *, TestResult (*)(void));
//jl