| 5399 | }; |
| 5400 | |
| 5401 | struct TestRunStats { |
| 5402 | TestRunStats( TestRunInfo const& _runInfo, |
| 5403 | Totals const& _totals, |
| 5404 | bool _aborting ); |
| 5405 | |
| 5406 | TestRunStats( TestRunStats const& ) = default; |
| 5407 | TestRunStats( TestRunStats && ) = default; |
| 5408 | TestRunStats& operator = ( TestRunStats const& ) = default; |
| 5409 | TestRunStats& operator = ( TestRunStats && ) = default; |
| 5410 | virtual ~TestRunStats(); |
| 5411 | |
| 5412 | TestRunInfo runInfo; |
| 5413 | Totals totals; |
| 5414 | bool aborting; |
| 5415 | }; |
| 5416 | |
| 5417 | #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) |
| 5418 | struct BenchmarkInfo { |
no outgoing calls
no test coverage detected