| 5532 | }; |
| 5533 | |
| 5534 | struct SectionStats { |
| 5535 | SectionStats( SectionInfo const& _sectionInfo, |
| 5536 | Counts const& _assertions, |
| 5537 | double _durationInSeconds, |
| 5538 | bool _missingAssertions ); |
| 5539 | SectionStats( SectionStats const& ) = default; |
| 5540 | SectionStats( SectionStats && ) = default; |
| 5541 | SectionStats& operator = ( SectionStats const& ) = default; |
| 5542 | SectionStats& operator = ( SectionStats && ) = default; |
| 5543 | virtual ~SectionStats(); |
| 5544 | |
| 5545 | SectionInfo sectionInfo; |
| 5546 | Counts assertions; |
| 5547 | double durationInSeconds; |
| 5548 | bool missingAssertions; |
| 5549 | }; |
| 5550 | |
| 5551 | struct TestCaseStats { |
| 5552 | TestCaseStats( TestCaseInfo const& _testInfo, |