| 5570 | |
| 5571 | struct TestCaseStats { |
| 5572 | TestCaseStats( TestCaseInfo const& _testInfo, |
| 5573 | Totals const& _totals, |
| 5574 | std::string const& _stdOut, |
| 5575 | std::string const& _stdErr, |
| 5576 | bool _aborting ) |
| 5577 | : testInfo( _testInfo ), |
| 5578 | totals( _totals ), |
| 5579 | stdOut( _stdOut ), |
| 5580 | stdErr( _stdErr ), |
| 5581 | aborting( _aborting ) |
| 5582 | {} |
| 5583 | virtual ~TestCaseStats(); |
| 5584 | |
| 5585 | # ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS |
nothing calls this directly
no outgoing calls
no test coverage detected