| 8769 | SectionStats::~SectionStats() = default; |
| 8770 | |
| 8771 | TestCaseStats::TestCaseStats( TestCaseInfo const& _testInfo, |
| 8772 | Totals const& _totals, |
| 8773 | std::string const& _stdOut, |
| 8774 | std::string const& _stdErr, |
| 8775 | bool _aborting ) |
| 8776 | : testInfo( _testInfo ), |
| 8777 | totals( _totals ), |
| 8778 | stdOut( _stdOut ), |
| 8779 | stdErr( _stdErr ), |
| 8780 | aborting( _aborting ) |
| 8781 | {} |
| 8782 | |
| 8783 | TestCaseStats::~TestCaseStats() = default; |
| 8784 |
nothing calls this directly
no outgoing calls
no test coverage detected