package org.wamblee.test; /** * Transaction callback for testing. * The test will fail if any type of exception is thrown. */ public interface TestTransactionCallbackWithoutResult { /** * Executes code within a transaction, causing the testcase to fail if any * type of exception is thrown. * */ void execute( ) throws Exception; }