aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp/debug/assert.debug_test.cpp
blob: 7514c4cfdcc06c29f9b1765e27dbfc32060706f5 (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 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;
}