(no commit message)
[utils] / test / enterprise / src / main / java / org / wamblee / test / persistence / RequireTransactionStatus.java
index 338e41a1f310c87a72edc8858a53fc690283335f..14d871bf09ff5b19852b1c090000220478c9f4ea 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.test.persistence;
 
 import org.wamblee.test.transactions.TransactionResult;
@@ -20,26 +20,31 @@ import org.wamblee.test.transactions.TransactionResult;
 import static junit.framework.Assert.*;
 
 /**
- * Specific transaction result callback to require a specific transaction result. 
+ * Specific transaction result callback to require a specific transaction
+ * result.
+ * 
  * @author Erik Brakkee
- *
+ * 
  */
 public class RequireTransactionStatus implements TransactionResultCallback {
 
-    private TransactionResult result; 
-    
+    private TransactionResult result;
+
     /**
-     * Constructs the callback. 
-     * @param aResult Required result. 
+     * Constructs the callback.
+     * 
+     * @param aResult
+     *            Required result.
      */
-    public RequireTransactionStatus(TransactionResult aResult) { 
+    public RequireTransactionStatus(TransactionResult aResult) {
         result = aResult;
     }
-    
+
     @Override
     public void status(TransactionResult aResult) {
-        if (!result.equals(aResult)) { 
-            fail("Required transaction result was " + result + " but actual result was " + aResult);
+        if (!result.equals(aResult)) {
+            fail("Required transaction result was " + result +
+                " but actual result was " + aResult);
         }
     }