Gitiles
Code Review
Sign In
gerrit.cesnet.cz
/
github
/
onqtam
/
doctest
/
1c7321d517c6c7bff1b056fd5c79399f3f9d7cea
/
.
/
examples
/
multi_dll
/
dll.cpp
blob: 647f3bf2c754ed4b32ffbcd3d2ae0125a586107e [
file
] [
log
] [
blame
]
#define
BUILDING_DLL
#include
"common.h"
doctest_test
(
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
();
}