| 5208 | }; |
| 5209 | |
| 5210 | struct TestRunStats { |
| 5211 | TestRunStats( TestRunInfo const& _runInfo, |
| 5212 | Totals const& _totals, |
| 5213 | bool _aborting ) |
| 5214 | : runInfo( _runInfo ), |
| 5215 | totals( _totals ), |
| 5216 | aborting( _aborting ) |
| 5217 | {} |
| 5218 | virtual ~TestRunStats(); |
| 5219 | |
| 5220 | # ifndef CATCH_CONFIG_CPP11_GENERATED_METHODS |
| 5221 | TestRunStats( TestRunStats const& _other ) |
| 5222 | : runInfo( _other.runInfo ), |
| 5223 | totals( _other.totals ), |
| 5224 | aborting( _other.aborting ) |
| 5225 | {} |
| 5226 | # else |
| 5227 | TestRunStats( TestRunStats const& ) = default; |
| 5228 | TestRunStats( TestRunStats && ) = default; |
| 5229 | TestRunStats& operator = ( TestRunStats const& ) = default; |
| 5230 | TestRunStats& operator = ( TestRunStats && ) = default; |
| 5231 | # endif |
| 5232 | |
| 5233 | TestRunInfo runInfo; |
| 5234 | Totals totals; |
| 5235 | bool aborting; |
| 5236 | }; |
| 5237 | |
| 5238 | struct IStreamingReporter : IShared { |
| 5239 | virtual ~IStreamingReporter(); |
no outgoing calls
no test coverage detected