summaryrefslogtreecommitdiff
path: root/examples/installed_doctest_cmake/dll/main.cpp
blob: 7c6d0f915b6a8d177a4ca3677203b49ec7e4fc47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#define DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL
#include <doctest/doctest.h>

#include "dll.h"

int main(int argc, char **argv) {
    doctest::Context context;
    context.applyCommandLine(argc, argv);
    
    int res = context.run(); // run doctest
    
    // important - query flags (and --exit) rely on the user doing this
    if (context.shouldExit()) {
        // propagate the result of the tests
        return res;
    }
    
    say_hello_dll(); // test dll func
}

int square(const int number) { return number * number; }

TEST_CASE("testing the square function") {
    CHECK(square(2) == 4);
    CHECK(square(4) == 16);
    CHECK(square(5) == 25);
    CHECK(square(8) == 64);
}

// running notes
// ./example_dll --no-run (run normal program)
// ./example_dll --exit (run tests then exit)
// ./example_dll (run tests then run program)
// ./example_dll --success (print successful test casts)