| 110 | } |
| 111 | |
| 112 | int TestContext::run(int argc, const char* const* argv) FL_NOEXCEPT { |
| 113 | // Extract filter from first arg if present |
| 114 | const char* filter = nullptr; |
| 115 | if (argc > 1 && argv && argv[1]) { |
| 116 | filter = argv[1]; |
| 117 | } |
| 118 | return run(filter); |
| 119 | } |
| 120 | |
| 121 | int TestContext::run(const char* filter) FL_NOEXCEPT { |
| 122 | mStats.reset(); |
no test coverage detected