blob: 45bd18b7bdc16535d555f8b1ebee20eb1e5a1748 [file] [log] [blame]
onqtam4a655632016-05-26 14:20:52 +03001#define DOCTEST_CONFIG_DISABLE
2
3#define DOCTEST_CONFIG_IMPLEMENT
4#include "doctest.h"
5
6int main(int argc, char** argv) {
7 doctest::Context context(argc, argv); // initialize
8
9 // overrides
10 context.addFilter("test-case-exclude", "*math*"); // exclude test cases with "math" in the name
11 context.setOption("no-breaks", true); // don't break in the debugger when assertions fail
12 context.setOption("abort-after", 5); // stop test execution after 5 failed assertions
13 context.setOption("sort", "name"); // sort the test cases by their name
14
15 int res = context.run(); // run
16
onqtamf720d432016-05-31 17:51:10 +030017 if(context.shouldExit()) // important - query flags (and --exit) rely on the user doing this
onqtam4a655632016-05-26 14:20:52 +030018 return res; // propagate the result of the tests
19
20 int client_stuff_return_code = 0;
21 // your program - if the testing framework is integrated in your production code
22
23 return res + client_stuff_return_code;
24}