| 5541 | }; |
| 5542 | |
| 5543 | struct SectionStats { |
| 5544 | SectionStats( SectionInfo const& _sectionInfo, |
| 5545 | Counts const& _assertions, |
| 5546 | double _durationInSeconds, |
| 5547 | bool _missingAssertions ); |
| 5548 | SectionStats( SectionStats const& ) = default; |
| 5549 | SectionStats( SectionStats && ) = default; |
| 5550 | SectionStats& operator = ( SectionStats const& ) = default; |
| 5551 | SectionStats& operator = ( SectionStats && ) = default; |
| 5552 | virtual ~SectionStats(); |
| 5553 | |
| 5554 | SectionInfo sectionInfo; |
| 5555 | Counts assertions; |
| 5556 | double durationInSeconds; |
| 5557 | bool missingAssertions; |
| 5558 | }; |
| 5559 | |
| 5560 | struct TestCaseStats { |
| 5561 | TestCaseStats( TestCaseInfo const& _testInfo, |