| 4494 | |
| 4495 | struct TestCaseStats { |
| 4496 | TestCaseStats( TestCaseInfo const& _testInfo, |
| 4497 | Totals const& _totals, |
| 4498 | std::string const& _stdOut, |
| 4499 | std::string const& _stdErr, |
| 4500 | bool _aborting ) |
| 4501 | : testInfo( _testInfo ), |
| 4502 | totals( _totals ), |
| 4503 | stdOut( _stdOut ), |
| 4504 | stdErr( _stdErr ), |
| 4505 | aborting( _aborting ) |
| 4506 | {} |
| 4507 | virtual ~TestCaseStats(); |
| 4508 | |
| 4509 | # ifdef CATCH_CPP11_OR_GREATER |
nothing calls this directly
no outgoing calls
no test coverage detected