| 7581 | SectionStats::~SectionStats() = default; |
| 7582 | |
| 7583 | TestCaseStats::TestCaseStats( TestCaseInfo const& _testInfo, |
| 7584 | Totals const& _totals, |
| 7585 | std::string const& _stdOut, |
| 7586 | std::string const& _stdErr, |
| 7587 | bool _aborting ) |
| 7588 | : testInfo( _testInfo ), |
| 7589 | totals( _totals ), |
| 7590 | stdOut( _stdOut ), |
| 7591 | stdErr( _stdErr ), |
| 7592 | aborting( _aborting ) |
| 7593 | {} |
| 7594 | |
| 7595 | TestCaseStats::~TestCaseStats() = default; |
| 7596 |
nothing calls this directly
no outgoing calls
no test coverage detected