| 4700 | }; |
| 4701 | |
| 4702 | struct TestCaseStats { |
| 4703 | TestCaseStats( TestCaseInfo const& _testInfo, |
| 4704 | Totals const& _totals, |
| 4705 | std::string const& _stdOut, |
| 4706 | std::string const& _stdErr, |
| 4707 | bool _aborting ); |
| 4708 | |
| 4709 | TestCaseStats( TestCaseStats const& ) = default; |
| 4710 | TestCaseStats( TestCaseStats && ) = default; |
| 4711 | TestCaseStats& operator = ( TestCaseStats const& ) = default; |
| 4712 | TestCaseStats& operator = ( TestCaseStats && ) = default; |
| 4713 | virtual ~TestCaseStats(); |
| 4714 | |
| 4715 | TestCaseInfo testInfo; |
| 4716 | Totals totals; |
| 4717 | std::string stdOut; |
| 4718 | std::string stdErr; |
| 4719 | bool aborting; |
| 4720 | }; |
| 4721 | |
| 4722 | struct TestGroupStats { |
| 4723 | TestGroupStats( GroupInfo const& _groupInfo, |
no outgoing calls
no test coverage detected