assertFalse(Utils.inheritsModule(module, "second.MyModule"));
// create "second", still not inherited
GTestUtils.createModule(m_testProject, "second.MyModule");
assertFalse(Utils.inheritsModule(module, "second.MyModule"));
// add elements into module
DefaultModuleProvider.modify(module, new ModuleModification() {
public void modify(ModuleElement moduleElement) throws Exception {
moduleElement.addInheritsElement("second.MyModule");
}
});
// yes, inherits