| 5546 | |
| 5547 | struct SectionStats { |
| 5548 | SectionStats( SectionInfo const& _sectionInfo, |
| 5549 | Counts const& _assertions, |
| 5550 | double _durationInSeconds, |
| 5551 | bool _missingAssertions ) |
| 5552 | : sectionInfo( _sectionInfo ), |
| 5553 | assertions( _assertions ), |
| 5554 | durationInSeconds( _durationInSeconds ), |
| 5555 | missingAssertions( _missingAssertions ) |
| 5556 | {} |
| 5557 | virtual ~SectionStats(); |
| 5558 | # ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS |
| 5559 | SectionStats( SectionStats const& ) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected