Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / test / java / org / wamblee / conditions / AndConditionTest.java
index 7468237345cffc88ef3985db8a97869fc0365173..8552cbd5d14174d77c3537df380658db02c3409b 100644 (file)
@@ -20,16 +20,16 @@ import junit.framework.TestCase;
 import java.util.ArrayList;
 import java.util.List;
 
-
 /**
  * Tests the Or Condition.
- *
+ * 
  * @author Erik Brakkee
  */
 public class AndConditionTest extends TestCase {
     public void checkResult(boolean aFirst, boolean aSecond, boolean aResult) {
-        AndCondition<Integer> and = new AndCondition<Integer>(new FixedCondition<Integer>(
-                    aFirst), new FixedCondition<Integer>(aSecond));
+        AndCondition<Integer> and = new AndCondition<Integer>(
+            new FixedCondition<Integer>(aFirst), new FixedCondition<Integer>(
+                aSecond));
         assertEquals(aResult, and.matches(0));
     }
 
@@ -46,7 +46,7 @@ public class AndConditionTest extends TestCase {
 
     /**
      * Checks all combinations of two conditions.
-     *
+     * 
      */
     public void testTwoConditions() {
         checkResult(false, false, false);