| 5513 | }; |
| 5514 | |
| 5515 | struct TestGroupStats { |
| 5516 | TestGroupStats( GroupInfo const& _groupInfo, |
| 5517 | Totals const& _totals, |
| 5518 | bool _aborting ); |
| 5519 | TestGroupStats( GroupInfo const& _groupInfo ); |
| 5520 | |
| 5521 | TestGroupStats( TestGroupStats const& ) = default; |
| 5522 | TestGroupStats( TestGroupStats && ) = default; |
| 5523 | TestGroupStats& operator = ( TestGroupStats const& ) = default; |
| 5524 | TestGroupStats& operator = ( TestGroupStats && ) = default; |
| 5525 | virtual ~TestGroupStats(); |
| 5526 | |
| 5527 | GroupInfo groupInfo; |
| 5528 | Totals totals; |
| 5529 | bool aborting; |
| 5530 | }; |
| 5531 | |
| 5532 | struct TestRunStats { |
| 5533 | TestRunStats( TestRunInfo const& _runInfo, |