X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Ftest%2Forg%2Fwamblee%2Ftest%2FTestTransactionCallbackWithoutResult.java;h=84e213f5bcf39b371a4bc9c4570f0b04759d2b06;hb=f00422d2aa8871388a35b79744bb28731f9d9586;hp=05a23573961ee592300693470942b7a2a412df49;hpb=fb4deb496257c78d4711aab48191dd9a0678798a;p=utils diff --git a/support/test/org/wamblee/test/TestTransactionCallbackWithoutResult.java b/support/test/org/wamblee/test/TestTransactionCallbackWithoutResult.java index 05a23573..84e213f5 100644 --- a/support/test/org/wamblee/test/TestTransactionCallbackWithoutResult.java +++ b/support/test/org/wamblee/test/TestTransactionCallbackWithoutResult.java @@ -1,16 +1,14 @@ - package org.wamblee.test; - /** - * 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 TestTransactionCallbackWithoutResult { /** * Executes code within a transaction, causing the testcase to fail if any * type of exception is thrown. - * + * */ - void execute( ) throws Exception; + void execute() throws Exception; }