| 3488 | }; |
| 3489 | |
| 3490 | struct TestGroupStats { |
| 3491 | TestGroupStats(GroupInfo const &_groupInfo, Totals const &_totals, bool _aborting); |
| 3492 | TestGroupStats(GroupInfo const &_groupInfo); |
| 3493 | |
| 3494 | TestGroupStats(TestGroupStats const &) = default; |
| 3495 | TestGroupStats(TestGroupStats &&) = default; |
| 3496 | TestGroupStats &operator=(TestGroupStats const &) = default; |
| 3497 | TestGroupStats &operator=(TestGroupStats &&) = default; |
| 3498 | virtual ~TestGroupStats(); |
| 3499 | |
| 3500 | GroupInfo groupInfo; |
| 3501 | Totals totals; |
| 3502 | bool aborting; |
| 3503 | }; |
| 3504 | |
| 3505 | struct TestRunStats { |
| 3506 | TestRunStats(TestRunInfo const &_runInfo, Totals const &_totals, bool _aborting); |