aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp/meow/debug/assert.debug_test.cpp
blob: b3b793a41c9f29dbf1068020a978b9762d60835d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <cstdio>

#define MEOW_DEBUG_ASSERT_TESTING

namespace test {

void abort() {
  printf("Do abort()\n");
}

}

#include <meow/debug/assert.h>

using namespace meow;

int main() {
  Assert(1 == 1, "hi");
  Assert(1 == 0, "no!!!%s %d", "bla", 13);
  return 0;
}