| 72 | } |
| 73 | |
| 74 | int CommandLineTestRunner::runAllTestsMain() |
| 75 | { |
| 76 | int testResult = 1; |
| 77 | |
| 78 | SetPointerPlugin pPlugin(DEF_PLUGIN_SET_POINTER); |
| 79 | registry_->installPlugin(&pPlugin); |
| 80 | |
| 81 | if (parseArguments(registry_->getFirstPlugin())) |
| 82 | testResult = runAllTests(); |
| 83 | |
| 84 | registry_->removePluginByName(DEF_PLUGIN_SET_POINTER); |
| 85 | return testResult; |
| 86 | } |
| 87 | |
| 88 | void CommandLineTestRunner::initializeTestRun() |
| 89 | { |
no test coverage detected