(no commit message)
[utils] / support / src / test / java / wamblee / test / TestTransactionCallbackWithoutResult.java
1 package org.wamblee.test;
2
3 /**
4  * Transaction callback for testing. The test will fail if any type of exception
5  * is thrown.
6  */
7 public interface TestTransactionCallbackWithoutResult {
8     /**
9      * Executes code within a transaction, causing the testcase to fail if any
10      * type of exception is thrown.
11      * 
12      */
13     void execute() throws Exception;
14 }