X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Ftest%2Forg%2Fwamblee%2Ftest%2FTestTransactionCallback.java;h=ff46779b0e4333b903066d4e2ba1ad9f326fbf4d;hb=e7344d379884b01a523a305599b7403fda4821e4;hp=fa07b698d9aeb872dbf4b7d7964b142b5087dde9;hpb=caa126385642ffc57478e928ab871bc09c53e993;p=utils diff --git a/support/test/org/wamblee/test/TestTransactionCallback.java b/support/test/org/wamblee/test/TestTransactionCallback.java index fa07b698..ff46779b 100644 --- a/support/test/org/wamblee/test/TestTransactionCallback.java +++ b/support/test/org/wamblee/test/TestTransactionCallback.java @@ -1,21 +1,18 @@ - package org.wamblee.test; import java.util.Map; - /** - * Transaction callback for testing. - * The test will fail if any type of exception is thrown. + * Transaction callback for testing. The test will fail if any type of exception + * is thrown. */ public interface TestTransactionCallback { /** * Executes code within a transaction, causing the testcase to fail if any * type of exception is thrown. - * - * @return A map containg the resuls of the execution. This is - * a convenient method of returning multiple results from - * a call. + * + * @return A map containg the resuls of the execution. This is a convenient + * method of returning multiple results from a call. */ - Map execute( ) throws Exception; + Map execute() throws Exception; }