| 223 | |
| 224 | |
| 225 | static void addMasterContenderModules(Modules* modules) |
| 226 | { |
| 227 | CHECK_NOTNULL(modules); |
| 228 | |
| 229 | // Now add our test anonymous module. |
| 230 | Modules::Library* library = modules->add_libraries(); |
| 231 | library->set_file(getModulePath("testmastercontender")); |
| 232 | |
| 233 | // To add a new module from this library, create a new ModuleID enum |
| 234 | // and tie it with a module name. |
| 235 | addModule( |
| 236 | library, |
| 237 | TestMasterContender, |
| 238 | "org_apache_mesos_TestMasterContender"); |
| 239 | } |
| 240 | |
| 241 | |
| 242 | static void addMasterDetectorModules(Modules* modules) |
no test coverage detected