Package com.jboss.transaction.txinterop.interop

Examples of com.jboss.transaction.txinterop.interop.InteropTestSuite


        MessageLogging.clearThreadLog() ;
        final Test test ;
        if (TestConstants.NAME_ALL_TESTS.equals(testName))
        {
            final TestSuite testSuite = new TestSuite() ;
            testSuite.addTest(new InteropTestSuite(participantURI, testTimeout, asyncTest, AT_TEST_CLASS)) ;
            testSuite.addTest(new InteropTestSuite(participantURI, testTimeout, asyncTest, BA_TEST_CLASS)) ;
            test = testSuite ;
        }
        else if (TestConstants.NAME_ALL_AT_TESTS.equals(testName))
        {
            test = new InteropTestSuite(participantURI, testTimeout, asyncTest, AT_TEST_CLASS) ;
        }
        else if (TestConstants.NAME_ALL_BA_TESTS.equals(testName))
        {
            test = new InteropTestSuite(participantURI, testTimeout, asyncTest, BA_TEST_CLASS) ;
        }
        else if (testName.startsWith(TestConstants.PREFIX_AT_TESTS))
        {
            final Class testClass = AT_TEST_CLASS ;
            try
View Full Code Here

TOP

Related Classes of com.jboss.transaction.txinterop.interop.InteropTestSuite

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.