hardly | b1e7e14 | 2014-08-06 00:43:51 +0300 | [diff] [blame] | 1 | #define BUILDING_DLL |
2 | #include "common.h" | ||||
3 | |||||
onqtam | ff2a780 | 2016-03-22 16:03:22 +0200 | [diff] [blame] | 4 | testcase(dll) { |
hardly | b1e7e14 | 2014-08-06 00:43:51 +0300 | [diff] [blame] | 5 | printf("I am a test from the dll!\n"); |
6 | } | ||||
7 | |||||
8 | DLL_PUBLIC int call_tests_from_dll(int argc, char** argv) { | ||||
9 | doctest::Context context(argc, argv); | ||||
10 | return context.runTests(); | ||||
11 | } |