| 3633 | }; |
| 3634 | |
| 3635 | struct TestGroupStats { |
| 3636 | TestGroupStats( GroupInfo const& _groupInfo, |
| 3637 | Totals const& _totals, |
| 3638 | bool _aborting ); |
| 3639 | TestGroupStats( GroupInfo const& _groupInfo ); |
| 3640 | |
| 3641 | TestGroupStats( TestGroupStats const& ) = default; |
| 3642 | TestGroupStats( TestGroupStats && ) = default; |
| 3643 | TestGroupStats& operator = ( TestGroupStats const& ) = default; |
| 3644 | TestGroupStats& operator = ( TestGroupStats && ) = default; |
| 3645 | virtual ~TestGroupStats(); |
| 3646 | |
| 3647 | GroupInfo groupInfo; |
| 3648 | Totals totals; |
| 3649 | bool aborting; |
| 3650 | }; |
| 3651 | |
| 3652 | struct TestRunStats { |
| 3653 | TestRunStats( TestRunInfo const& _runInfo, |