X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=trunk%2Fsupport%2Ftest%2Forg%2Fwamblee%2Ftest%2FTestTransactionCallback.java;h=ff46779b0e4333b903066d4e2ba1ad9f326fbf4d;hb=61a941c92d494722449109b9a18121b2484e667b;hp=fa07b698d9aeb872dbf4b7d7964b142b5087dde9;hpb=47764a05414ff8de332bd681f3519bf40eb24199;p=utils diff --git a/trunk/support/test/org/wamblee/test/TestTransactionCallback.java b/trunk/support/test/org/wamblee/test/TestTransactionCallback.java index fa07b698..ff46779b 100644 --- a/trunk/support/test/org/wamblee/test/TestTransactionCallback.java +++ b/trunk/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; }