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