| 3456 | }; |
| 3457 | |
| 3458 | struct SectionStats { |
| 3459 | SectionStats(SectionInfo const &_sectionInfo, Counts const &_assertions, double _durationInSeconds, |
| 3460 | bool _missingAssertions); |
| 3461 | SectionStats(SectionStats const &) = default; |
| 3462 | SectionStats(SectionStats &&) = default; |
| 3463 | SectionStats &operator=(SectionStats const &) = default; |
| 3464 | SectionStats &operator=(SectionStats &&) = default; |
| 3465 | virtual ~SectionStats(); |
| 3466 | |
| 3467 | SectionInfo sectionInfo; |
| 3468 | Counts assertions; |
| 3469 | double durationInSeconds; |
| 3470 | bool missingAssertions; |
| 3471 | }; |
| 3472 | |
| 3473 | struct TestCaseStats { |
| 3474 | TestCaseStats(TestCaseInfo const &_testInfo, Totals const &_totals, std::string const &_stdOut, |