renamed various checking functions

This commit is contained in:
jlamothe
2023-11-11 03:40:00 +00:00
parent 3309ac7aee
commit c0f28d41b0
3 changed files with 88 additions and 88 deletions

View File

@@ -65,12 +65,12 @@ test_pass(TestState *s)
mk_sample_state(&actual);
run_test(&actual, always_passes);
compare_states(
chk_TestState_eq(
s,
"\t\t",
"ERROR: run_test(): passing:",
&expected,
&actual
&actual,
&expected
);
}
@@ -91,7 +91,7 @@ test_fail(TestState *s)
mk_sample_state(&actual);
run_test(&actual, always_fails);
compare_states(
chk_TestState_eq(
s,
"\t\t",
"ERROR: run_test(): failing:",
@@ -117,7 +117,7 @@ test_pend(TestState *s)
mk_sample_state(&actual);
run_test(&actual, always_pends);
compare_states(
chk_TestState_eq(
s,
"\t\t",
"ERROR: run_test(): pending:",