| 10092 | class JunitReporter : public CumulativeReporterBase { |
| 10093 | public: |
| 10094 | JunitReporter( ReporterConfig const& _config ) |
| 10095 | : CumulativeReporterBase( _config ), |
| 10096 | xml( _config.stream() ) |
| 10097 | { |
| 10098 | m_reporterPrefs.shouldRedirectStdOut = true; |
| 10099 | } |
| 10100 | |
| 10101 | virtual ~JunitReporter() CATCH_OVERRIDE; |
| 10102 |
nothing calls this directly
no outgoing calls
no test coverage detected