summaryrefslogtreecommitdiff
path: root/source/tests/cpp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/tests/cpp.cpp')
-rw-r--r--source/tests/cpp.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/tests/cpp.cpp b/source/tests/cpp.cpp
new file mode 100644
index 0000000..8b762e4
--- /dev/null
+++ b/source/tests/cpp.cpp
@@ -0,0 +1,13 @@
+#include "../kit_test/test.h"
+
+TEST("foo") {
+ REQUIRE(20 + 22 == 42);
+}
+
+TEST("bar") {
+ REQUIRE(true);
+}
+
+int main(int argc, char **argv) {
+ return run_tests(argc, argv);
+}