Gitiles
Code Review
Sign In
gerrit.cesnet.cz
/
github
/
onqtam
/
doctest
/
74facf2a8a634bd279f680af0d93b737941d4589
/
.
/
examples
/
separate_headers
/
test.cpp
blob: a7364b797696350ad29a77954159c10421241404 [
file
] [
log
] [
blame
]
#include
"parts/doctest_fwd.h"
#include
<cstdio>
TEST_CASE
(
"stuff"
)
{
printf
(
"Hello world!\n"
);
CHECK
(
1
==
1
);
SUBCASE
(
"bar"
)
{
SUBCASE
(
"foo"
)
{
printf
(
"foo\n"
);
//
}
SUBCASE
(
"baz"
)
{
printf
(
"baz\n"
);
//
}
printf
(
"end\n"
);
//
}
}