Package test

Examples of test.TestInvocation


      System.out.println("Test " + testConfiguration.getTestName() + " completed successfully");
    }
   
    public String invokeTest( String input ) throws Exception {

      TestInvocation service = (TestInvocation) getService( testConfiguration.getServiceInterface(),
                                  testConfiguration.getTestServiceName() );     
     
      return service.invokeTest( input );
    } // end method invokeTest
View Full Code Here


        System.out.println("Test " + testConfiguration.getTestName() + " completed successfully");
    }

    public String invokeTest(String input) throws Exception {

        TestInvocation service =
            (TestInvocation)getService(testConfiguration.getServiceInterface(), testConfiguration.getTestServiceName());

        return service.invokeTest(input);
    } // end method invokeTest
View Full Code Here

TOP

Related Classes of test.TestInvocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.