private ClassLoader classLoader;
public void testLoadClient() throws Exception {
URL resource = classLoader.getResource("deployables/app-client1.jar");
ClassLoader cl = new URLClassLoader(new URL[] {resource});
Bundle bundle = new MockBundle(cl, resource.toString(), 0L);
ClientDeployable deployable = new ClientDeployable(bundle);
assertEquals(ModuleType.CAR, deployable.getType());
Set entrySet = new HashSet(Collections.list(deployable.entries()));
Set resultSet = new HashSet();
resultSet.add("META-INF/");