| 4958 | }; |
| 4959 | |
| 4960 | struct TestCaseStats { |
| 4961 | TestCaseStats( TestCaseInfo const& _testInfo, |
| 4962 | Totals const& _totals, |
| 4963 | std::string const& _stdOut, |
| 4964 | std::string const& _stdErr, |
| 4965 | bool _aborting ); |
| 4966 | |
| 4967 | TestCaseStats( TestCaseStats const& ) = default; |
| 4968 | TestCaseStats( TestCaseStats && ) = default; |
| 4969 | TestCaseStats& operator = ( TestCaseStats const& ) = default; |
| 4970 | TestCaseStats& operator = ( TestCaseStats && ) = default; |
| 4971 | virtual ~TestCaseStats(); |
| 4972 | |
| 4973 | TestCaseInfo testInfo; |
| 4974 | Totals totals; |
| 4975 | std::string stdOut; |
| 4976 | std::string stdErr; |
| 4977 | bool aborting; |
| 4978 | }; |
| 4979 | |
| 4980 | struct TestGroupStats { |
| 4981 | TestGroupStats( GroupInfo const& _groupInfo, |
no outgoing calls
no test coverage detected