FileDocCategorySizeDatePackage
CmdLineIncludeTestCase.javaAPI DocApache Axis 1.42173Sat Apr 22 18:57:26 BST 2006test.wsdl.selectivefilegen

CmdLineIncludeTestCase

public class CmdLineIncludeTestCase extends test.wsdl.filegen.FileGenTestCase
This test verifies the cmd line interface to the selective file generation. This test is similar to the includes test, in that it names two namespaces to be generated, which causes only the bean classes to be generated.
author
Jim Stafford jim.stafford@raba.com

Fields Summary
Constructors Summary
public CmdLineIncludeTestCase(String name)

        super(name);
    
Methods Summary
protected java.lang.StringrootDir()

        return "build" + File.separator + "work" + File.separator + 
                "test" + File.separator + "wsdl" + File.separator +
                "selectivefilegen" + File.separator +
                "cmdlinei";
    
protected java.util.SetshouldExist()
List of files which should be generated.

        HashSet set = new HashSet();
        
        set.add("Bean1.java");
        set.add("Bean2.java");
        /* not included - 
        set.add(servicesDir + File.separator + "Reporter.java");
        set.add(servicesDir + File.separator + "ReporterSoapBindingImpl.java");
        set.add(servicesDir + File.separator + "ReporterSoapBindingStub.java");
        set.add(servicesDir + File.separator + "ReporterSoapBindingSkeleton.java");
        set.add(servicesDir + File.separator + "deploy.wsdd");
        set.add(servicesDir + File.separator + "undeploy.wsdd");
        */
        return set;