blob: 240c24eb666d879e9da215c675cd6a6b5aab33e5 [file] [log] [blame]
#include "common.h"
TESTCASE("executable") {
printf("I am a test from the executable!\n");
}
int main(int argc, char** argv) {
doctest::Context context(argc, argv);
int res = context.runTests();
res += call_tests_from_dll(argc, argv);
return res;
}