| 4737 | }; |
| 4738 | |
| 4739 | struct TestRunStats { |
| 4740 | TestRunStats( TestRunInfo const& _runInfo, |
| 4741 | Totals const& _totals, |
| 4742 | bool _aborting ); |
| 4743 | |
| 4744 | TestRunStats( TestRunStats const& ) = default; |
| 4745 | TestRunStats( TestRunStats && ) = default; |
| 4746 | TestRunStats& operator = ( TestRunStats const& ) = default; |
| 4747 | TestRunStats& operator = ( TestRunStats && ) = default; |
| 4748 | virtual ~TestRunStats(); |
| 4749 | |
| 4750 | TestRunInfo runInfo; |
| 4751 | Totals totals; |
| 4752 | bool aborting; |
| 4753 | }; |
| 4754 | |
| 4755 | struct BenchmarkInfo { |
| 4756 | std::string name; |
no outgoing calls
no test coverage detected