| 5595 | }; |
| 5596 | |
| 5597 | struct TestRunStats { |
| 5598 | TestRunStats( TestRunInfo const& _runInfo, |
| 5599 | Totals const& _totals, |
| 5600 | bool _aborting ); |
| 5601 | |
| 5602 | TestRunStats( TestRunStats const& ) = default; |
| 5603 | TestRunStats( TestRunStats && ) = default; |
| 5604 | TestRunStats& operator = ( TestRunStats const& ) = default; |
| 5605 | TestRunStats& operator = ( TestRunStats && ) = default; |
| 5606 | virtual ~TestRunStats(); |
| 5607 | |
| 5608 | TestRunInfo runInfo; |
| 5609 | Totals totals; |
| 5610 | bool aborting; |
| 5611 | }; |
| 5612 | |
| 5613 | #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) |
| 5614 | struct BenchmarkInfo { |
no outgoing calls
no test coverage detected