| 107 | }; |
| 108 | |
| 109 | static void helperDoRunOneTestInCurrentProcess(void* data) |
| 110 | { |
| 111 | HelperTestRunInfo* runInfo = (HelperTestRunInfo*) data; |
| 112 | |
| 113 | UtestShell* shell = runInfo->shell_; |
| 114 | TestPlugin* plugin = runInfo->plugin_; |
| 115 | TestResult* result = runInfo->result_; |
| 116 | |
| 117 | shell->runOneTestInCurrentProcess(plugin, *result); |
| 118 | } |
| 119 | |
| 120 | static void helperDoRunOneTestSeperateProcess(void* data) |
| 121 | { |
nothing calls this directly
no test coverage detected