| 5682 | }; |
| 5683 | |
| 5684 | struct TestGroupStats { |
| 5685 | TestGroupStats( GroupInfo const& _groupInfo, |
| 5686 | Totals const& _totals, |
| 5687 | bool _aborting ) |
| 5688 | : groupInfo( _groupInfo ), |
| 5689 | totals( _totals ), |
| 5690 | aborting( _aborting ) |
| 5691 | {} |
| 5692 | TestGroupStats( GroupInfo const& _groupInfo ) |
| 5693 | : groupInfo( _groupInfo ), |
| 5694 | aborting( false ) |
| 5695 | {} |
| 5696 | virtual ~TestGroupStats(); |
| 5697 | |
| 5698 | # ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS |
| 5699 | TestGroupStats( TestGroupStats const& ) = default; |
| 5700 | TestGroupStats( TestGroupStats && ) = default; |
| 5701 | TestGroupStats& operator = ( TestGroupStats const& ) = default; |
| 5702 | TestGroupStats& operator = ( TestGroupStats && ) = default; |
| 5703 | # endif |
| 5704 | |
| 5705 | GroupInfo groupInfo; |
| 5706 | Totals totals; |
| 5707 | bool aborting; |
| 5708 | }; |
| 5709 | |
| 5710 | struct TestRunStats { |
| 5711 | TestRunStats( TestRunInfo const& _runInfo, |