onqtam | 4a65563 | 2016-05-26 14:20:52 +0300 | [diff] [blame^] | 1 | #include "common.h" |
2 | |||||
3 | TEST_CASE("executable") { | ||||
4 | printf("I am a test from the executable!\n"); | ||||
5 | } | ||||
6 | |||||
7 | int main(int argc, char** argv) { | ||||
8 | doctest::Context context(argc, argv); | ||||
9 | int res = context.run(); | ||||
10 | |||||
11 | res += call_tests_from_dll(argc, argv); | ||||
12 | |||||
13 | return res; | ||||
14 | } |