| 4978 | }; |
| 4979 | |
| 4980 | struct TestGroupStats { |
| 4981 | TestGroupStats( GroupInfo const& _groupInfo, |
| 4982 | Totals const& _totals, |
| 4983 | bool _aborting ); |
| 4984 | TestGroupStats( GroupInfo const& _groupInfo ); |
| 4985 | |
| 4986 | TestGroupStats( TestGroupStats const& ) = default; |
| 4987 | TestGroupStats( TestGroupStats && ) = default; |
| 4988 | TestGroupStats& operator = ( TestGroupStats const& ) = default; |
| 4989 | TestGroupStats& operator = ( TestGroupStats && ) = default; |
| 4990 | virtual ~TestGroupStats(); |
| 4991 | |
| 4992 | GroupInfo groupInfo; |
| 4993 | Totals totals; |
| 4994 | bool aborting; |
| 4995 | }; |
| 4996 | |
| 4997 | struct TestRunStats { |
| 4998 | TestRunStats( TestRunInfo const& _runInfo, |