| 164 | } |
| 165 | |
| 166 | TestOutput* CommandLineTestRunner::createCompositeOutput(TestOutput* outputOne, TestOutput* outputTwo) |
| 167 | { |
| 168 | CompositeTestOutput* composite = new CompositeTestOutput; |
| 169 | composite->setOutputOne(outputOne); |
| 170 | composite->setOutputTwo(outputTwo); |
| 171 | return composite; |
| 172 | } |
| 173 | |
| 174 | bool CommandLineTestRunner::parseArguments(TestPlugin* plugin) |
| 175 | { |
nothing calls this directly
no test coverage detected