TestClassLoaderDeployer deployer = new TestClassLoaderDeployer();
DeployerClient main = createMainDeployer(deployer);
Deployment deployment = createSimpleDeployment("top");
DeploymentFactory factory = new DeploymentFactory();
factory.addContext(deployment, "sub");
main.addDeployment(deployment);
main.process();
DeploymentContext top = assertDeploymentContext(main, "top");
DeploymentContext sub = assertDeploymentContext(main, "top/sub");