| 4470 | |
| 4471 | struct SectionStats { |
| 4472 | SectionStats( SectionInfo const& _sectionInfo, |
| 4473 | Counts const& _assertions, |
| 4474 | double _durationInSeconds, |
| 4475 | bool _missingAssertions ) |
| 4476 | : sectionInfo( _sectionInfo ), |
| 4477 | assertions( _assertions ), |
| 4478 | durationInSeconds( _durationInSeconds ), |
| 4479 | missingAssertions( _missingAssertions ) |
| 4480 | {} |
| 4481 | virtual ~SectionStats(); |
| 4482 | # ifdef CATCH_CPP11_OR_GREATER |
| 4483 | SectionStats( SectionStats const& ) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected