blob: 20cf2491832ce6df7211a8bc6394e9b25a1f174f [file] [log] [blame]
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include "doctest_proxy.h"
#include <cstdio>
my_testcase("custom macros") {
printf("Hello world!\n");
my_check(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
}