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