| 3471 | }; |
| 3472 | |
| 3473 | struct TestCaseStats { |
| 3474 | TestCaseStats(TestCaseInfo const &_testInfo, Totals const &_totals, std::string const &_stdOut, |
| 3475 | std::string const &_stdErr, bool _aborting); |
| 3476 | |
| 3477 | TestCaseStats(TestCaseStats const &) = default; |
| 3478 | TestCaseStats(TestCaseStats &&) = default; |
| 3479 | TestCaseStats &operator=(TestCaseStats const &) = default; |
| 3480 | TestCaseStats &operator=(TestCaseStats &&) = default; |
| 3481 | virtual ~TestCaseStats(); |
| 3482 | |
| 3483 | TestCaseInfo testInfo; |
| 3484 | Totals totals; |
| 3485 | std::string stdOut; |
| 3486 | std::string stdErr; |
| 3487 | bool aborting; |
| 3488 | }; |
| 3489 | |
| 3490 | struct TestGroupStats { |
| 3491 | TestGroupStats(GroupInfo const &_groupInfo, Totals const &_totals, bool _aborting); |
no outgoing calls