| 5578 | }; |
| 5579 | |
| 5580 | struct TestGroupStats { |
| 5581 | TestGroupStats( GroupInfo const& _groupInfo, |
| 5582 | Totals const& _totals, |
| 5583 | bool _aborting ); |
| 5584 | TestGroupStats( GroupInfo const& _groupInfo ); |
| 5585 | |
| 5586 | TestGroupStats( TestGroupStats const& ) = default; |
| 5587 | TestGroupStats( TestGroupStats && ) = default; |
| 5588 | TestGroupStats& operator = ( TestGroupStats const& ) = default; |
| 5589 | TestGroupStats& operator = ( TestGroupStats && ) = default; |
| 5590 | virtual ~TestGroupStats(); |
| 5591 | |
| 5592 | GroupInfo groupInfo; |
| 5593 | Totals totals; |
| 5594 | bool aborting; |
| 5595 | }; |
| 5596 | |
| 5597 | struct TestRunStats { |
| 5598 | TestRunStats( TestRunInfo const& _runInfo, |