FileDocCategorySizeDatePackage
EmployeeDatabaseTestCase.javaAPI DocApache Axis 1.46100Sat Apr 22 18:57:26 BST 2006test.wsdl.wrapped2

EmployeeDatabaseTestCase

public class EmployeeDatabaseTestCase extends TestCase
EmployeeDatabaseTestCase.java This file was auto-generated from WSDL by the Apache Axis 1.2dev Oct 26, 2003 (08:57:14 EST) WSDL2Java emitter.

Fields Summary
Constructors Summary
public EmployeeDatabaseTestCase(String name)

        super(name);
    
Methods Summary
public voidtest1EmployeeDatabaseGetEmployeeCount()

        test.wsdl.wrapped2.EmployeeDBBindingStub binding;
        try {
            binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
                          new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            if(jre.getLinkedCause()!=null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertNotNull("binding is null", binding);

        // Time out after a minute
        binding.setTimeout(60000);

        // Test operation
        int value = -3;
        value = binding.getEmployeeCount(0);
        // TBD - validate results
    
public voidtest2EmployeeDatabaseAddGroups()

        test.wsdl.wrapped2.EmployeeDBBindingStub binding;
        try {
            binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
                          new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            if(jre.getLinkedCause()!=null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertNotNull("binding is null", binding);

        // Time out after a minute
        binding.setTimeout(60000);

        // Test operation
        boolean value = false;
        value = binding.addGroups(new java.lang.String[0]);
        // TBD - validate results
    
public voidtest3EmployeeDatabaseIsManager()

        test.wsdl.wrapped2.EmployeeDBBindingStub binding;
        try {
            binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
                          new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            if(jre.getLinkedCause()!=null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertNotNull("binding is null", binding);

        // Time out after a minute
        binding.setTimeout(60000);

        // Test operation
        boolean value = false;
        value = binding.isManager(new java.lang.String(), new java.lang.String());
        // TBD - validate results
    
public voidtest4EmployeeDatabasePromoteEmployee()

        test.wsdl.wrapped2.EmployeeDBBindingStub binding;
        try {
            binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
                          new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            if(jre.getLinkedCause()!=null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertNotNull("binding is null", binding);

        // Time out after a minute
        binding.setTimeout(60000);

        // Test operation
        boolean value = false;
        value = binding.promoteEmployee(new test.wsdl.wrapped2.xsd.NameType(), 0);
        // TBD - validate results
    
public voidtest5EmployeeDatabaseGetEmployees()

        test.wsdl.wrapped2.EmployeeDBBindingStub binding;
        try {
            binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
                          new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            if(jre.getLinkedCause()!=null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertNotNull("binding is null", binding);

        // Time out after a minute
        binding.setTimeout(60000);

        // Test operation
        test.wsdl.wrapped2.xsd.EmployeeType[] value = null;
        value = binding.getEmployees(new test.wsdl.wrapped2.xsd.NameType[0]);
        // TBD - validate results
    
public voidtest6EmployeeDatabaseScheduleMtg()

        test.wsdl.wrapped2.EmployeeDBBindingStub binding;
        try {
            binding = (test.wsdl.wrapped2.EmployeeDBBindingStub)
                          new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabase();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            if(jre.getLinkedCause()!=null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertNotNull("binding is null", binding);

        // Time out after a minute
        binding.setTimeout(60000);

        // Test operation
        boolean value = false;
        value = binding.scheduleMtg(new test.wsdl.wrapped2.xsd.EmployeeType[0]);
        // TBD - validate results
    
public voidtestEmployeeDatabaseWSDL()

        javax.xml.rpc.ServiceFactory serviceFactory = javax.xml.rpc.ServiceFactory.newInstance();
        java.net.URL url = new java.net.URL(new test.wsdl.wrapped2.EmployeeDatabaseLocator().getEmployeeDatabaseAddress() + "?WSDL");
        javax.xml.rpc.Service service = serviceFactory.createService(url, new test.wsdl.wrapped2.EmployeeDatabaseLocator().getServiceName());
        assertTrue(service != null);