| 4683 | }; |
| 4684 | |
| 4685 | struct SectionStats { |
| 4686 | SectionStats( SectionInfo const& _sectionInfo, |
| 4687 | Counts const& _assertions, |
| 4688 | double _durationInSeconds, |
| 4689 | bool _missingAssertions ); |
| 4690 | SectionStats( SectionStats const& ) = default; |
| 4691 | SectionStats( SectionStats && ) = default; |
| 4692 | SectionStats& operator = ( SectionStats const& ) = default; |
| 4693 | SectionStats& operator = ( SectionStats && ) = default; |
| 4694 | virtual ~SectionStats(); |
| 4695 | |
| 4696 | SectionInfo sectionInfo; |
| 4697 | Counts assertions; |
| 4698 | double durationInSeconds; |
| 4699 | bool missingAssertions; |
| 4700 | }; |
| 4701 | |
| 4702 | struct TestCaseStats { |
| 4703 | TestCaseStats( TestCaseInfo const& _testInfo, |