Gitiles
Code Review
Sign In
gerrit.cesnet.cz
/
github
/
onqtam
/
doctest
/
4fe9a87b891ce782f0cd2c58fea9b8699a275d89
/
.
/
examples
/
dll_and_executable
/
dll.cpp
blob: f7b88a5efa3e5837f1116f39bc7953fdf57b6243 [
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
();
}