| 4995 | }; |
| 4996 | |
| 4997 | struct TestRunStats { |
| 4998 | TestRunStats( TestRunInfo const& _runInfo, |
| 4999 | Totals const& _totals, |
| 5000 | bool _aborting ); |
| 5001 | |
| 5002 | TestRunStats( TestRunStats const& ) = default; |
| 5003 | TestRunStats( TestRunStats && ) = default; |
| 5004 | TestRunStats& operator = ( TestRunStats const& ) = default; |
| 5005 | TestRunStats& operator = ( TestRunStats && ) = default; |
| 5006 | virtual ~TestRunStats(); |
| 5007 | |
| 5008 | TestRunInfo runInfo; |
| 5009 | Totals totals; |
| 5010 | bool aborting; |
| 5011 | }; |
| 5012 | |
| 5013 | struct BenchmarkInfo { |
| 5014 | std::string name; |
no outgoing calls
no test coverage detected