Package org.grails.transaction.ChainedTransactionManagerTests

Examples of org.grails.transaction.ChainedTransactionManagerTests.TransactionManagerMatcher


      description.appendText("that a " + (commitCheck ? "committed" : "rolled-back") + " TransactionManager");
    }

    @Factory
    public static TransactionManagerMatcher isCommitted() {
      return new TransactionManagerMatcher(true);
    }
View Full Code Here


      return new TransactionManagerMatcher(true);
    }

    @Factory
    public static TransactionManagerMatcher wasRolledback() {
      return new TransactionManagerMatcher(false);
    }
View Full Code Here

TOP

Related Classes of org.grails.transaction.ChainedTransactionManagerTests.TransactionManagerMatcher

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.