| 150 | } |
| 151 | |
| 152 | TestOutput* CommandLineTestRunner::createJUnitOutput(const SimpleString& packageName) |
| 153 | { |
| 154 | JUnitTestOutput* junitOutput = new JUnitTestOutput; |
| 155 | if (junitOutput != NULLPTR) { |
| 156 | junitOutput->setPackageName(packageName); |
| 157 | } |
| 158 | return junitOutput; |
| 159 | } |
| 160 | |
| 161 | TestOutput* CommandLineTestRunner::createConsoleOutput() |
| 162 | { |
nothing calls this directly
no test coverage detected