diff options
Diffstat (limited to 'source/test/programs/cpp_example.cpp')
-rw-r--r-- | source/test/programs/cpp_example.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source/test/programs/cpp_example.cpp b/source/test/programs/cpp_example.cpp new file mode 100644 index 0000000..ca0b4c7 --- /dev/null +++ b/source/test/programs/cpp_example.cpp @@ -0,0 +1,13 @@ +#include "../../kit_test/test.h" + +TEST("foo") { + REQUIRE(20 + 22 == 42); +} + +TEST("bar") { + REQUIRE(true); +} + +auto main(int argc, char **argv) -> int { + return run_tests(argc, argv); +} |