Package com.jboss.transaction.wstf.interop

Examples of com.jboss.transaction.wstf.interop.InteropTestCase


        throws IllegalAccessException, InstantiationException, IllegalArgumentException
    {
        final Object testObject = testClass.newInstance() ;
        if (testObject instanceof InteropTestCase)
        {
            final InteropTestCase interopTestCase = (InteropTestCase)testObject ;
            interopTestCase.setParticipantURI(participantURI) ;
            interopTestCase.setTestTimeout(testTimeout) ;
            interopTestCase.setAsyncTest(asyncTest) ;
            interopTestCase.setName(testName) ;
            return interopTestCase ;
        }
        else if (testObject instanceof TestCase)
        {
            final TestCase test = (TestCase)testObject ;
View Full Code Here

TOP

Related Classes of com.jboss.transaction.wstf.interop.InteropTestCase

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.