| 129 | |
| 130 | |
| 131 | static void addHookModules(Modules* modules) |
| 132 | { |
| 133 | CHECK_NOTNULL(modules); |
| 134 | |
| 135 | // Now add our test hook module. |
| 136 | Modules::Library* library = modules->add_libraries(); |
| 137 | library->set_file(getModulePath("testhook")); |
| 138 | |
| 139 | // To add a new module from this library, create a new ModuleID enum |
| 140 | // and tie it with a module name. |
| 141 | addModule(library, TestHook, "org_apache_mesos_TestHook"); |
| 142 | } |
| 143 | |
| 144 | |
| 145 | static void addAnonymousModules(Modules* modules) |
no test coverage detected