return suite(EsbStructureUnitTestCase.class);
}
protected VFSDeploymentContext determineStructure(VFSDeployment deployment) throws Exception
{
GroupingStructure gs = new GroupingStructure();
VirtualFileFilter top = new VirtualFileFilter()
{
public boolean accepts(VirtualFile file)
{
return file.getName().endsWith(".esb");
}
};
gs.setShortCircuitFilter(top);
gs.addGroup("jars");
gs.addGroup("wars");
return determineStructureWithStructureDeployers(deployment, new JARStructure(), new WARStructure(), gs);
}