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