1 package org.wamblee.test;
6 * Transaction callback for testing. The test will fail if any type of exception
11 public interface TestTransactionCallback {
13 * Executes code within a transaction, causing the testcase to fail if any
14 * type of exception is thrown.
16 * @return A map containg the resuls of the execution. This is a convenient
17 * method of returning multiple results from a call.
19 Map execute() throws Exception;