Gitiles
Code Review
Sign In
gerrit.cesnet.cz
/
github
/
onqtam
/
doctest
/
329e9648c9751316acb3fec01a84dcd4747f5f1e
/
.
/
examples
/
multi_dll
/
dll.cpp
blob: 937a67a4681760d6d16774567be1910080877050 [
file
] [
log
] [
blame
]
#define
BUILDING_DLL
#include
"common.h"
TEST_CASE
(
"dll"
)
{
printf
(
"I am a test from the dll!\n"
);
}
DLL_PUBLIC
int
call_tests_from_dll
(
int
argc
,
char
**
argv
)
{
doctest
::
Context
context
(
argc
,
argv
);
return
context
.
run
();
}