blob: 513dfe03c64273564166d20aadc3153940e21489 [file] [log] [blame]
onqtam4a655632016-05-26 14:20:52 +03001#define DOCTEST_CONFIG_IMPLEMENT
2#include "doctest.h"
3
onqtam7cc0e962017-04-17 23:30:36 +03004#include "header.h"
5
Martin Moene2e66b612016-05-30 17:18:44 +02006int program();
7
onqtam4a655632016-05-26 14:20:52 +03008int main(int argc, char** argv) {
onqtamcfce1882017-04-02 17:31:55 +03009 doctest::Context context;
10
11 // !!! THIS IS JUST AN EXAMPLE SHOWING HOW DEFAULTS/OVERRIDES ARE SET !!!
onqtam7d5c0d52016-06-02 17:50:59 +030012
13 // defaults
14 context.addFilter("test-case-exclude", "*math*"); // exclude test cases with "math" in the name
onqtam89da6542017-05-02 21:10:42 +030015 context.setOption("rand-seed", 324); // if order-by is set to "rand" ise this seed
16 context.setOption("order-by", "file"); // sort the test cases by file and line
onqtam7d5c0d52016-06-02 17:50:59 +030017
18 context.applyCommandLine(argc, argv);
onqtam4a655632016-05-26 14:20:52 +030019
20 // overrides
onqtam4a655632016-05-26 14:20:52 +030021 context.setOption("no-breaks", true); // don't break in the debugger when assertions fail
onqtam4a655632016-05-26 14:20:52 +030022
Martin Moene2e66b612016-05-30 17:18:44 +020023 int res = context.run(); // run queries, or run tests unless --no-run is specified
onqtam4a655632016-05-26 14:20:52 +030024
onqtam7ffa84e2016-05-30 18:42:20 +030025 if(context.shouldExit()) // important - query flags (and --exit) rely on the user doing this
onqtam4a655632016-05-26 14:20:52 +030026 return res; // propagate the result of the tests
27
onqtam89da6542017-05-02 21:10:42 +030028 context.clearFilters(); // removes all filters added up to this point
29
Martin Moene2e66b612016-05-30 17:18:44 +020030 int client_stuff_return_code = program();
onqtam4a655632016-05-26 14:20:52 +030031 // your program - if the testing framework is integrated in your production code
32
onqtam96bdf712016-09-13 16:45:52 +030033 return res + client_stuff_return_code; // the result from doctest is propagated here as well
onqtam4a655632016-05-26 14:20:52 +030034}
35
onqtam4a655632016-05-26 14:20:52 +030036TEST_CASE("[string] testing std::string") {
37 std::string a("omg");
38 CHECK(a == "omg");
39}
40
41TEST_CASE("[math] basic stuff") {
42 CHECK(6 > 5);
43 CHECK(6 > 7);
44}
Martin Moene2e66b612016-05-30 17:18:44 +020045
46int program() {
onqtam4fe9a872016-05-30 18:51:00 +030047 printf("Program code.\n");
Martin Moene2e66b612016-05-30 17:18:44 +020048 return EXIT_SUCCESS;
49}