Explicit declaration of main to create (destroy) the QuESTEnv before (after) * invoking the Catch unit tests */
| 39 | * invoking the Catch unit tests |
| 40 | */ |
| 41 | int main(int argc, char* argv[]) { |
| 42 | |
| 43 | initQuESTEnv(); |
| 44 | setInputErrorHandler(validationErrorHandler); |
| 45 | setRandomTestStateSeeds(); |
| 46 | |
| 47 | int result = Catch::Session().run( argc, argv ); |
| 48 | |
| 49 | finalizeQuESTEnv(); |
| 50 | return result; |
| 51 | } |
nothing calls this directly
no test coverage detected