| 175 | } |
| 176 | |
| 177 | void UtestShell::runOneTest(TestPlugin* plugin, TestResult& result) |
| 178 | { |
| 179 | hasFailed_ = false; |
| 180 | result.countRun(); |
| 181 | HelperTestRunInfo runInfo(this, plugin, &result); |
| 182 | if (isRunInSeperateProcess()) |
| 183 | PlatformSpecificSetJmp(helperDoRunOneTestSeperateProcess, &runInfo); |
| 184 | else |
| 185 | PlatformSpecificSetJmp(helperDoRunOneTestInCurrentProcess, &runInfo); |
| 186 | } |
| 187 | |
| 188 | Utest* UtestShell::createTest() |
| 189 | { |
no test coverage detected