Package org.jtester.core.context

Examples of org.jtester.core.context.TransactionManager.startTransaction()


    @Override
    public void beforeMethodRunning(Object testObject, Method testMethod) {
      boolean isEnabledTransaction = TestedObject.isTransactionsEnabled();
      TransactionManager transaction = TestedObject.getLocalTransactionManager();
      if (isEnabledTransaction && transaction != null) {
        transaction.startTransaction();
      }
    }

    @Override
    public void afterMethodRunned(Object testObject, Method testMethod, Throwable testThrowable) {
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.