| 3596 | }; |
| 3597 | |
| 3598 | struct SectionStats { |
| 3599 | SectionStats( SectionInfo const& _sectionInfo, |
| 3600 | Counts const& _assertions, |
| 3601 | double _durationInSeconds, |
| 3602 | bool _missingAssertions ); |
| 3603 | SectionStats( SectionStats const& ) = default; |
| 3604 | SectionStats( SectionStats && ) = default; |
| 3605 | SectionStats& operator = ( SectionStats const& ) = default; |
| 3606 | SectionStats& operator = ( SectionStats && ) = default; |
| 3607 | virtual ~SectionStats(); |
| 3608 | |
| 3609 | SectionInfo sectionInfo; |
| 3610 | Counts assertions; |
| 3611 | double durationInSeconds; |
| 3612 | bool missingAssertions; |
| 3613 | }; |
| 3614 | |
| 3615 | struct TestCaseStats { |
| 3616 | TestCaseStats( TestCaseInfo const& _testInfo, |