| 3613 | }; |
| 3614 | |
| 3615 | struct TestCaseStats { |
| 3616 | TestCaseStats( TestCaseInfo const& _testInfo, |
| 3617 | Totals const& _totals, |
| 3618 | std::string const& _stdOut, |
| 3619 | std::string const& _stdErr, |
| 3620 | bool _aborting ); |
| 3621 | |
| 3622 | TestCaseStats( TestCaseStats const& ) = default; |
| 3623 | TestCaseStats( TestCaseStats && ) = default; |
| 3624 | TestCaseStats& operator = ( TestCaseStats const& ) = default; |
| 3625 | TestCaseStats& operator = ( TestCaseStats && ) = default; |
| 3626 | virtual ~TestCaseStats(); |
| 3627 | |
| 3628 | TestCaseInfo testInfo; |
| 3629 | Totals totals; |
| 3630 | std::string stdOut; |
| 3631 | std::string stdErr; |
| 3632 | bool aborting; |
| 3633 | }; |
| 3634 | |
| 3635 | struct TestGroupStats { |
| 3636 | TestGroupStats( GroupInfo const& _groupInfo, |
no outgoing calls
no test coverage detected