| 206 | |
| 207 | |
| 208 | static void addHttpAuthenticatorModules(Modules* modules) |
| 209 | { |
| 210 | CHECK_NOTNULL(modules); |
| 211 | |
| 212 | // Now add our test HTTP authenticator module. |
| 213 | Modules::Library* library = modules->add_libraries(); |
| 214 | library->set_file(getModulePath("testhttpauthenticator")); |
| 215 | |
| 216 | // To add a new module from this library, create a new ModuleID enum |
| 217 | // and tie it with a module name. |
| 218 | addModule( |
| 219 | library, |
| 220 | TestHttpBasicAuthenticator, |
| 221 | "org_apache_mesos_TestHttpBasicAuthenticator"); |
| 222 | } |
| 223 | |
| 224 | |
| 225 | static void addMasterContenderModules(Modules* modules) |
no test coverage detected