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