}
}
public void testCreateClassPathEntryPathAndSuffixes()
{
DeploymentFactory factory = createDeploymentFactory();
ClassPathEntry entry = factory.createClassPathEntry("path", "suffixes");
assertEquals("path", entry.getPath());
assertEquals("suffixes", entry.getSuffixes());
entry = factory.createClassPathEntry("path", null);
assertEquals("path", entry.getPath());
assertNull(entry.getSuffixes());
}