| 5476 | }; |
| 5477 | |
| 5478 | struct SectionStats { |
| 5479 | SectionStats( SectionInfo const& _sectionInfo, |
| 5480 | Counts const& _assertions, |
| 5481 | double _durationInSeconds, |
| 5482 | bool _missingAssertions ); |
| 5483 | SectionStats( SectionStats const& ) = default; |
| 5484 | SectionStats( SectionStats && ) = default; |
| 5485 | SectionStats& operator = ( SectionStats const& ) = default; |
| 5486 | SectionStats& operator = ( SectionStats && ) = default; |
| 5487 | virtual ~SectionStats(); |
| 5488 | |
| 5489 | SectionInfo sectionInfo; |
| 5490 | Counts assertions; |
| 5491 | double durationInSeconds; |
| 5492 | bool missingAssertions; |
| 5493 | }; |
| 5494 | |
| 5495 | struct TestCaseStats { |
| 5496 | TestCaseStats( TestCaseInfo const& _testInfo, |