summaryrefslogtreecommitdiff
path: root/tests/auto/qdoc/catch_generators/tests/main.cpp
blob: cec18afbadda4c0a6ddbccd20e1a297e0ea38b60 (plain)
1
2
3
4
5
6
7
8
9
#define CATCH_CONFIG_RUNNER
#include <catch/catch.hpp>

// A custom main was provided to avoid linking errors when using minGW
// that were appearing in CI.
// See https://github.com/catchorg/Catch2/issues/1287
int main(int argc, char* argv[]) {
    return Catch::Session().run(argc, argv);
}