| 10951 | SectionStats::~SectionStats() = default; |
| 10952 | |
| 10953 | TestCaseStats::TestCaseStats( TestCaseInfo const& _testInfo, |
| 10954 | Totals const& _totals, |
| 10955 | std::string const& _stdOut, |
| 10956 | std::string const& _stdErr, |
| 10957 | bool _aborting ) |
| 10958 | : testInfo( _testInfo ), |
| 10959 | totals( _totals ), |
| 10960 | stdOut( _stdOut ), |
| 10961 | stdErr( _stdErr ), |
| 10962 | aborting( _aborting ) |
| 10963 | {} |
| 10964 | |
| 10965 | TestCaseStats::~TestCaseStats() = default; |
| 10966 |
nothing calls this directly
no outgoing calls
no test coverage detected