| 147 | |
| 148 | |
| 149 | int usModuleAutoLoadTest(int /*argc*/, char* /*argv*/[]) |
| 150 | { |
| 151 | US_TEST_BEGIN("ModuleLoaderTest"); |
| 152 | |
| 153 | ModuleSettings::SetAutoLoadingEnabled(false); |
| 154 | testDefaultAutoLoadPath(false); |
| 155 | ModuleSettings::SetAutoLoadingEnabled(true); |
| 156 | |
| 157 | testDefaultAutoLoadPath(true); |
| 158 | |
| 159 | testCustomAutoLoadPath(); |
| 160 | |
| 161 | US_TEST_END() |
| 162 | } |
nothing calls this directly
no test coverage detected