summaryrefslogtreecommitdiff
path: root/source/tests/cpp.cpp
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2023-09-02 20:59:29 +0200
committerMitya Selivanov <automainint@guattari.tech>2023-09-02 20:59:29 +0200
commit835e1fcd131c63ee2b3b647e327b33a3bfb369e3 (patch)
tree9d6fb42d6296a7bbec4a6ea58358c0fdb5de7e05 /source/tests/cpp.cpp
parent34ba87d8c8cfef5ed249b34bd2d2b7e41a34d2f7 (diff)
downloadkit-835e1fcd131c63ee2b3b647e327b33a3bfb369e3.zip
[Linux] Change build system; Remove CMake
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);
+}