diff --git a/test/initial-state.c b/test/initial-state.c index cbf3b81..83ac16a 100644 --- a/test/initial-state.c +++ b/test/initial-state.c @@ -41,7 +41,7 @@ decl_test(initial_ptr); void test_initial_state(TestState *s) { - print("Testing initial state\n"); + print("initial state\n"); run_test(s, initial_test_count); run_test(s, initial_pass_count); run_test(s, initial_fail_count); diff --git a/test/mkfile b/test/mkfile index d029c7a..9104568 100644 --- a/test/mkfile +++ b/test/mkfile @@ -16,8 +16,8 @@ + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or (at + your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +*/ + +#include +#include + +#include "../9unit.h" +#include "run-test.h" + +// Public Functions + +void +test_run_test(TestState *) +{ + print("run_test()\n"); +} + +//jl diff --git a/test/run-test.h b/test/run-test.h new file mode 100644 index 0000000..8c182d4 --- /dev/null +++ b/test/run-test.h @@ -0,0 +1,23 @@ +/* + + 9unit + Copyright (C) Jonathan Lamothe + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or (at + your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +*/ + +extern void test_run_test(TestState *s); + +//jl diff --git a/test/tests.c b/test/tests.c index f2e8f90..e96b022 100644 --- a/test/tests.c +++ b/test/tests.c @@ -23,6 +23,7 @@ #include "../9unit.h" #include "initial-state.h" +#include "run-test.h" // Internal Prototypes @@ -50,6 +51,7 @@ tests(TestState *s) s->ptr = &scpy; test_initial_state(s); + test_run_test(s); } //jl