Package org.jtester.core.context

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


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

    /**
     * 移除测试方法的事务<br>
 
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.