| 3650 | }; |
| 3651 | |
| 3652 | struct TestRunStats { |
| 3653 | TestRunStats( TestRunInfo const& _runInfo, |
| 3654 | Totals const& _totals, |
| 3655 | bool _aborting ); |
| 3656 | |
| 3657 | TestRunStats( TestRunStats const& ) = default; |
| 3658 | TestRunStats( TestRunStats && ) = default; |
| 3659 | TestRunStats& operator = ( TestRunStats const& ) = default; |
| 3660 | TestRunStats& operator = ( TestRunStats && ) = default; |
| 3661 | virtual ~TestRunStats(); |
| 3662 | |
| 3663 | TestRunInfo runInfo; |
| 3664 | Totals totals; |
| 3665 | bool aborting; |
| 3666 | }; |
| 3667 | |
| 3668 | struct BenchmarkInfo { |
| 3669 | std::string name; |
no outgoing calls
no test coverage detected