Package org.springframework.data.transaction.ChainedTransactionManagerTests

Examples of org.springframework.data.transaction.ChainedTransactionManagerTests.TestPlatformTransactionManager.wasRolledBack()


    public boolean matchesSafely(PlatformTransactionManager platformTransactionManager) {
      TestPlatformTransactionManager ptm = (TestPlatformTransactionManager) platformTransactionManager;
      if (commitCheck) {
        return ptm.isCommitted();
      } else {
        return ptm.wasRolledBack();
      }

    }

    public void describeTo(Description description) {
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.