blob: 6fc37afba2427c89c03a631b76fd92556438dd71 [file] [log] [blame]
hardlyb1e7e142014-08-06 00:43:51 +03001#define BUILDING_DLL
2#include "common.h"
3
onqtamff2a7802016-03-22 16:03:22 +02004testcase(dll) {
hardlyb1e7e142014-08-06 00:43:51 +03005 printf("I am a test from the dll!\n");
6}
7
8DLL_PUBLIC int call_tests_from_dll(int argc, char** argv) {
9 doctest::Context context(argc, argv);
10 return context.runTests();
11}