| 5382 | }; |
| 5383 | |
| 5384 | struct TestGroupStats { |
| 5385 | TestGroupStats( GroupInfo const& _groupInfo, |
| 5386 | Totals const& _totals, |
| 5387 | bool _aborting ); |
| 5388 | TestGroupStats( GroupInfo const& _groupInfo ); |
| 5389 | |
| 5390 | TestGroupStats( TestGroupStats const& ) = default; |
| 5391 | TestGroupStats( TestGroupStats && ) = default; |
| 5392 | TestGroupStats& operator = ( TestGroupStats const& ) = default; |
| 5393 | TestGroupStats& operator = ( TestGroupStats && ) = default; |
| 5394 | virtual ~TestGroupStats(); |
| 5395 | |
| 5396 | GroupInfo groupInfo; |
| 5397 | Totals totals; |
| 5398 | bool aborting; |
| 5399 | }; |
| 5400 | |
| 5401 | struct TestRunStats { |
| 5402 | TestRunStats( TestRunInfo const& _runInfo, |