| 5130 | }; |
| 5131 | |
| 5132 | struct SectionStats { |
| 5133 | SectionStats( SectionInfo const& _sectionInfo, |
| 5134 | Counts const& _assertions, |
| 5135 | double _durationInSeconds, |
| 5136 | bool _missingAssertions ) |
| 5137 | : sectionInfo( _sectionInfo ), |
| 5138 | assertions( _assertions ), |
| 5139 | durationInSeconds( _durationInSeconds ), |
| 5140 | missingAssertions( _missingAssertions ) |
| 5141 | {} |
| 5142 | virtual ~SectionStats(); |
| 5143 | # ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS |
| 5144 | SectionStats( SectionStats const& ) = default; |
| 5145 | SectionStats( SectionStats && ) = default; |
| 5146 | SectionStats& operator = ( SectionStats const& ) = default; |
| 5147 | SectionStats& operator = ( SectionStats && ) = default; |
| 5148 | # endif |
| 5149 | |
| 5150 | SectionInfo sectionInfo; |
| 5151 | Counts assertions; |
| 5152 | double durationInSeconds; |
| 5153 | bool missingAssertions; |
| 5154 | }; |
| 5155 | |
| 5156 | struct TestCaseStats { |
| 5157 | TestCaseStats( TestCaseInfo const& _testInfo, |