protected void generateScenario(final String scenario) throws Exception
{
String resourceDir = "resources/tools/jbws1723/" + scenario;
String toolsDir = "tools/jbws1723/" + scenario;
String[] args = new String[] { "-dest", toolsDir, "-config", resourceDir + "/wstools-config.xml" };
new WSTools().generate(args);
File resourceDirFile = new File(resourceDir);
String[] expectedFiles = resourceDirFile.list(new FilenameFilter() {
public boolean accept(File dir, String name)
{
return name.endsWith(".java");