| 5558 | }; |
| 5559 | |
| 5560 | struct TestCaseStats { |
| 5561 | TestCaseStats( TestCaseInfo const& _testInfo, |
| 5562 | Totals const& _totals, |
| 5563 | std::string const& _stdOut, |
| 5564 | std::string const& _stdErr, |
| 5565 | bool _aborting ); |
| 5566 | |
| 5567 | TestCaseStats( TestCaseStats const& ) = default; |
| 5568 | TestCaseStats( TestCaseStats && ) = default; |
| 5569 | TestCaseStats& operator = ( TestCaseStats const& ) = default; |
| 5570 | TestCaseStats& operator = ( TestCaseStats && ) = default; |
| 5571 | virtual ~TestCaseStats(); |
| 5572 | |
| 5573 | TestCaseInfo testInfo; |
| 5574 | Totals totals; |
| 5575 | std::string stdOut; |
| 5576 | std::string stdErr; |
| 5577 | bool aborting; |
| 5578 | }; |
| 5579 | |
| 5580 | struct TestGroupStats { |
| 5581 | TestGroupStats( GroupInfo const& _groupInfo, |
no outgoing calls
no test coverage detected