Gitiles
Code Review
Sign In
gerrit.cesnet.cz
/
github
/
onqtam
/
doctest
/
336f95eb047c1f23ac34369940260085eae1dffa
/
.
/
examples
/
multi_dll
/
dll.cpp
blob: 6fc37afba2427c89c03a631b76fd92556438dd71 [
file
] [
log
] [
blame
]
#define
BUILDING_DLL
#include
"common.h"
testcase
(
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
.
runTests
();
}