| 5530 | }; |
| 5531 | |
| 5532 | struct TestRunStats { |
| 5533 | TestRunStats( TestRunInfo const& _runInfo, |
| 5534 | Totals const& _totals, |
| 5535 | bool _aborting ); |
| 5536 | |
| 5537 | TestRunStats( TestRunStats const& ) = default; |
| 5538 | TestRunStats( TestRunStats && ) = default; |
| 5539 | TestRunStats& operator = ( TestRunStats const& ) = default; |
| 5540 | TestRunStats& operator = ( TestRunStats && ) = default; |
| 5541 | virtual ~TestRunStats(); |
| 5542 | |
| 5543 | TestRunInfo runInfo; |
| 5544 | Totals totals; |
| 5545 | bool aborting; |
| 5546 | }; |
| 5547 | |
| 5548 | #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) |
| 5549 | struct BenchmarkInfo { |
no outgoing calls
no test coverage detected