blob: 570db7a7340f54ad993e97a5e3be52ff2f7fbcf2 [file] [log] [blame]
#include "doctest_proxy.h"
my_testcase("custom macros") {
my_check(1 == 1);
my_check_eq(1, 1);
my_subcase("bar") {
my_subcase("foo") {}
my_subcase("baz") {}
my_require(5 > 3);
}
// CHECK(1 == 1); <== ERROR - the default short macros are disabled from the proxy header
}