public void testCreateClassPathPath()
{
DeploymentFactory factory = createDeploymentFactory();
List<ClassPathEntry> expected = Collections.singletonList(factory.createClassPathEntry("path"));
List<ClassPathEntry> classPath = factory.createClassPath("path");
assertEquals(expected, classPath);
}
public void testCreateClassPathPathErrors()
{