commit | b1e7e147a8a71d67e38dbcc20687399bd73e563a | [log] [tgz] |
---|---|---|
author | hardly <vik.kirilov@gmail.com> | Wed Aug 06 00:43:51 2014 +0300 |
committer | onqtam <vik.kirilov@gmail.com> | Sat Mar 05 05:20:00 2016 +0200 |
tree | 494492810420236ca5ebb1cba54a84f12b30df2a |
squashing git history for the last time
diff --git a/examples/multi_dll/dll.cpp b/examples/multi_dll/dll.cpp new file mode 100644 index 0000000..647f3bf --- /dev/null +++ b/examples/multi_dll/dll.cpp
@@ -0,0 +1,11 @@ +#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(); +}