| 5216 | namespace Catch { |
| 5217 | |
| 5218 | struct CompactReporter : StreamingReporterBase<CompactReporter> { |
| 5219 | |
| 5220 | using StreamingReporterBase::StreamingReporterBase; |
| 5221 | |
| 5222 | ~CompactReporter() override; |
| 5223 | |
| 5224 | static std::string getDescription(); |
| 5225 | |
| 5226 | ReporterPreferences getPreferences() const override; |
| 5227 | |
| 5228 | void noMatchingTestCases(std::string const& spec) override; |
| 5229 | |
| 5230 | void assertionStarting(AssertionInfo const&) override; |
| 5231 | |
| 5232 | bool assertionEnded(AssertionStats const& _assertionStats) override; |
| 5233 | |
| 5234 | void sectionEnded(SectionStats const& _sectionStats) override; |
| 5235 | |
| 5236 | void testRunEnded(TestRunStats const& _testRunStats) override; |
| 5237 | |
| 5238 | }; |
| 5239 | |
| 5240 | } // end namespace Catch |
| 5241 |
nothing calls this directly
no outgoing calls
no test coverage detected