aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp/debug/assert.debug_test.cpp
diff options
context:
space:
mode:
authorcathook <b01902109@csie.ntu.edu.tw>2014-10-18 04:18:27 +0800
committercathook <b01902109@csie.ntu.edu.tw>2014-10-18 04:18:27 +0800
commitfa817eee52694a15241c7d65c578f37c1b869dc9 (patch)
treed1e57674f7ef83f1c01de02ce0c6cf153dae39c3 /meowpp/debug/assert.debug_test.cpp
parent0f02ab1d29fc9a9da871711189047572b7724ad0 (diff)
downloadmeow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.gz
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.bz2
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.lz
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.xz
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.tar.zst
meow-fa817eee52694a15241c7d65c578f37c1b869dc9.zip
Move the test code into the main folder
also remove the doc directory from the git filesystem
Diffstat (limited to 'meowpp/debug/assert.debug_test.cpp')
-rw-r--r--meowpp/debug/assert.debug_test.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/meowpp/debug/assert.debug_test.cpp b/meowpp/debug/assert.debug_test.cpp
new file mode 100644
index 0000000..7514c4c
--- /dev/null
+++ b/meowpp/debug/assert.debug_test.cpp
@@ -0,0 +1,21 @@
+#include <cstdio>
+
+#define MEOWPP_DEBUG_ASSERT_TESTING
+
+namespace test {
+
+void abort() {
+ printf("Do abort()\n");
+}
+
+}
+
+#include <meowpp/debug/assert.h>
+
+using namespace meow;
+
+int main() {
+ Assert(1 == 1, "hi");
+ Assert(1 == 0, "no!!!%s %d", "bla", 13);
+ return 0;
+}