| 5345 | }; |
| 5346 | |
| 5347 | struct SectionStats { |
| 5348 | SectionStats( SectionInfo const& _sectionInfo, |
| 5349 | Counts const& _assertions, |
| 5350 | double _durationInSeconds, |
| 5351 | bool _missingAssertions ); |
| 5352 | SectionStats( SectionStats const& ) = default; |
| 5353 | SectionStats( SectionStats && ) = default; |
| 5354 | SectionStats& operator = ( SectionStats const& ) = default; |
| 5355 | SectionStats& operator = ( SectionStats && ) = default; |
| 5356 | virtual ~SectionStats(); |
| 5357 | |
| 5358 | SectionInfo sectionInfo; |
| 5359 | Counts assertions; |
| 5360 | double durationInSeconds; |
| 5361 | bool missingAssertions; |
| 5362 | }; |
| 5363 | |
| 5364 | struct TestCaseStats { |
| 5365 | TestCaseStats( TestCaseInfo const& _testInfo, |