| 4720 | }; |
| 4721 | |
| 4722 | struct TestGroupStats { |
| 4723 | TestGroupStats( GroupInfo const& _groupInfo, |
| 4724 | Totals const& _totals, |
| 4725 | bool _aborting ); |
| 4726 | TestGroupStats( GroupInfo const& _groupInfo ); |
| 4727 | |
| 4728 | TestGroupStats( TestGroupStats const& ) = default; |
| 4729 | TestGroupStats( TestGroupStats && ) = default; |
| 4730 | TestGroupStats& operator = ( TestGroupStats const& ) = default; |
| 4731 | TestGroupStats& operator = ( TestGroupStats && ) = default; |
| 4732 | virtual ~TestGroupStats(); |
| 4733 | |
| 4734 | GroupInfo groupInfo; |
| 4735 | Totals totals; |
| 4736 | bool aborting; |
| 4737 | }; |
| 4738 | |
| 4739 | struct TestRunStats { |
| 4740 | TestRunStats( TestRunInfo const& _runInfo, |