/** DU has 1 MD object that specified its name; others that didn't */
public void testOneConfiguredNameMultipleAttachments() throws DeploymentException
{
DUIH duih = getMultiAttachmentDUIH();
duih.getNamedModuleMetaData(JBossWebMetaData.class).setModuleName(TEST);
DeploymentUnit unit = getDeploymentUnitProxy(duih);
testee.deploy(unit);
for (Class<? extends NamedModule> type : standardTypes)
{
assertEquals("Module name correct for " + type, TEST, duih.getModuleName(type));
}