return deployment;
}
protected VFSDeploymentContext determineStructureWithStructureDeployers(VFSDeployment deployment, StructureDeployer... deployers) throws Exception
{
VFSStructuralDeployersImpl structuralDeployers = new TestStructuralDeployers();
VFSStructureBuilder builder = getStructureBuilder();
structuralDeployers.setStructureBuilder(builder);
for (StructureDeployer deployer : deployers)
structuralDeployers.addDeployer(deployer);
return (VFSDeploymentContext) structuralDeployers.determineStructure(deployment);
}