Gitiles
Code Review
Sign In
gerrit.cesnet.cz
/
github
/
onqtam
/
doctest
/
7fbae442d3e9c409b6ad8d9f7ed1cbfd510b1c4a
/
.
/
examples
/
hello_world
/
main.cpp
blob: 1888cd334f6a0097b60dba36020f0bd36acfb5cd [
file
] [
log
] [
blame
]
#define
DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include
"doctest.h"
#include
<cstdio>
TESTCASE
(
"the only test"
)
{
printf
(
"Hello world!\n"
);
}