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

#define MEOWPP_NODEBUG

#define MEOWPP_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;
}