Examples of TestMixIn


Examples of org.switchyard.test.TestMixIn

    @Override
    public void initialize() {
        if (getTestKit() != null) {
            Iterator<TestMixIn> dependencies = getTestKit().getOptionalDependencies(this).iterator();
            while (_jtaEnvironmentBean == null && dependencies.hasNext()) {
                TestMixIn testMixIn = dependencies.next();
                if (testMixIn instanceof TransactionMixInParticipant) {
                    try {
                        _logger.debug("Trying to locate JTA environment using " + testMixIn);
                        _jtaEnvironmentBean = ((TransactionMixInParticipant) testMixIn).locateEnvironmentBean();
                    } catch (Throwable e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.