Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / test / java / org / wamblee / conditions / OrConditionTest.java
index a757520b34ca03c826e5a24edfb5871b69b39694..c79561dea4a9c6a31c5e11dbaafd8ab930964301 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 OrConditionTest extends TestCase {
     public void checkResult(boolean aFirst, boolean aSecond, boolean aResult) {
-        OrCondition<Integer> or = new OrCondition<Integer>(new FixedCondition<Integer>(
-                    aFirst), new FixedCondition<Integer>(aSecond));
+        OrCondition<Integer> or = new OrCondition<Integer>(
+            new FixedCondition<Integer>(aFirst), new FixedCondition<Integer>(
+                aSecond));
         assertEquals(aResult, or.matches(0));
     }
 
@@ -46,7 +46,7 @@ public class OrConditionTest extends TestCase {
 
     /**
      * Checks all combinations of two conditions.
-     *
+     * 
      */
     public void testTwoConditions() {
         checkResult(false, false, false);