]> source.dussan.org Git - aspectj.git/commitdiff
untabified
authorehilsdal <ehilsdal>
Wed, 27 Aug 2003 20:21:03 +0000 (20:21 +0000)
committerehilsdal <ehilsdal>
Wed, 27 Aug 2003 20:21:03 +0000 (20:21 +0000)
18 files changed:
docs/teaching/exercises/tests/Test.java
docs/teaching/exercises/tests/Test1a.java
docs/teaching/exercises/tests/Test2a.java
docs/teaching/exercises/tests/Test2b.java
docs/teaching/exercises/tests/Test2c.java
docs/teaching/exercises/tests/Test2d.java
docs/teaching/exercises/tests/Test2e.java
docs/teaching/exercises/tests/Test2f.java
docs/teaching/exercises/tests/Test2g.java
docs/teaching/exercises/tests/Test2h.java
docs/teaching/exercises/tests/Test3a.java
docs/teaching/exercises/tests/Test3b.java
docs/teaching/exercises/tests/Test3c.java
docs/teaching/exercises/tests/Test4a.java
docs/teaching/exercises/tests/Test4b.java
docs/teaching/exercises/tests/Test4c.java
docs/teaching/exercises/tests/Test4d.java
docs/teaching/exercises/tests/Test4e.java

index e4f5b60f93e4372822b1edca0dbafd7ea62ba68f..17d8b12e61a255fe0dd4a0afde38f1b7d95cc94c 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -31,12 +31,12 @@ public class Test extends TestCase {
     Group g;
 
     public void setUp() {
-       p1 = new Point(10, 100);
-       p2 = new Point(20, 200);
-       l1 = new Line(p1, p2);
+        p1 = new Point(10, 100);
+        p2 = new Point(20, 200);
+        l1 = new Line(p1, p2);
         bb = new Box(5, 5, 10, 10);
         sloth1 = new SlothfulPoint(0, 0);
-       g = new Group(p1);
+        g = new Group(p1);
     }
 
     public final void testCreate() {
@@ -48,17 +48,17 @@ public class Test extends TestCase {
     }
 
     public final void testSetPoint() {
-       p1.setX(20);
+        p1.setX(20);
         assertEquals(p1.getX(), 20);
         assertEquals(p1.getY(), 100);
 
-       p1.setY(10);
+        p1.setY(10);
         assertEquals(p1.getX(), 20);
         assertEquals(p1.getY(), 10);
     }
 
     public final void testMoveLine1() {
-       l1.move(40, 40);
+        l1.move(40, 40);
         assertEquals(l1.getP1(), p1);
         assertEquals(l1.getP2(), p2);
 
@@ -70,7 +70,7 @@ public class Test extends TestCase {
     }
 
     public final void testMoveLine2() {
-       l1.move(-10, -10);
+        l1.move(-10, -10);
         assertEquals(p1.getX(), 0);
         assertEquals(p1.getY(), 90);
 
index b8bb2e12024b8196ebddcd56821c9e30a7213ecb..147a899e511490b3f4b8d50cdbd13db68aea975d 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -34,22 +34,22 @@ public class Test1a extends Test {
     }
 
     public void testSetXPointLog() {
-       p1.setX(20);
+        p1.setX(20);
         assertEquals("set;", Log.getString());
     }
 
     public void testSetYPointLog() {
-       p1.setY(10);
+        p1.setY(10);
         assertEquals("", Log.getString());
     }
 
     public void testGetYPointLog() {
-       p1.getY();
+        p1.getY();
         assertEquals("", Log.getString());
     }
 
     public void testMoveLineLog() {
-       l1.move(40, 40);
+        l1.move(40, 40);
         assertEquals("", Log.getString());
     }
 }
index 21ce08a9fa94a7cf54a6504b6428f2815d4e5a36..0b737020bbdf545983f6c947ba4488d2a20cd23a 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
index 63a10b7b069a0e206873f8c58361313e2398bab0..e127b5cc41c14dc704efe67d0e5cc2ebdbb36664 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -29,7 +29,7 @@ public class Test2b extends Test {
 
     public void testNull() {
         try {
-           g.add(null);
+            g.add(null);
             fail("should have thrown IllegalArgumentException");
         } catch (IllegalArgumentException ea) {
         }
index cfcb0d1d8b4427bc367d551a9e97d61855c92a08..153739fc05018878a847b7871e41ad67baa1447f 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -29,7 +29,7 @@ public class Test2c extends Test {
 
     public void testNull() {
         try {
-           g.add(null);
+            g.add(null);
             fail("should have thrown IllegalArgumentException");
         } catch (IllegalArgumentException ea) {
         }
@@ -37,7 +37,7 @@ public class Test2c extends Test {
 
     public void testSelf() {
         try {
-           g.add(g);
+            g.add(g);
             fail("should have thrown IllegalArgumentException");
         } catch (IllegalArgumentException ea) {
         }
index 89e47c088348cdbc8be32bf9bd72fc9e08f560fc..b8056fbf30d69ddc08196fcfae54d3b8002cd041 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -29,7 +29,7 @@ public class Test2d extends Test {
 
     public void testSetting() {
         try {
-           sloth1.setX(10);
+            sloth1.setX(10);
             fail("should have thrown RuntimeException");
         } catch (RuntimeException ea) {
         }
index 57af0850197c770b2a1468e5494373d7c7afb1ea..dfa456138ae1b78ad4b9b43b2c0ebfd9e36a6f16 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -35,7 +35,7 @@ public class Test2e extends Test {
 
         try {
             sq.getP0().setX(100);
-           sq.move(37, 1);
+            sq.move(37, 1);
             fail("should have thrown IllegalStateException");
         } catch (IllegalStateException e) { }
     }
index da63b12e1179c7aac9fe9c55d1af00be2b948aba..a11e167819c40bcac3adab34d426dc9e4884cb8a 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
index 7ed9ba341917dd5add13fb39c84bc3a6d38b5635..f4a7a1949d09ddab3130bd29f291a17f84df247c 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
index 9ed695d9b2ee6a18d778769dbfcbcf85b842c38c..33932251942d2c7585f2d3895c57e53380755ba1 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
index 3cb06325130b418dbca6ebb9f28d7468ca93e2b2..33afa3a82d3bff049b461bb275fbe66104af77e3 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -34,7 +34,7 @@ public class Test3a extends Test {
     }
 
     public void testMovePointLog() {
-       p1.move(20, 30);
+        p1.move(20, 30);
         assertEquals("moving;", Log.getString());
     }
 
@@ -43,7 +43,7 @@ public class Test3a extends Test {
     }
 
     public void testGetYPointLog() {
-       p1.getY();
+        p1.getY();
         assertEquals("", Log.getString());
     }
 }
index 6ec933ceeee80172c3357646e762786c0bffd670..1e8e8bd4dfe4165d1aa54c423aa480138afa6dbd 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -34,21 +34,21 @@ public class Test3b extends Test {
     }
 
     public void testCreateWithPointLog() {
-       g = new Group(p1);
+        g = new Group(p1);
         assertEquals("adding Point;", Log.getString());
     }
 
     public void testCreateWithoutPointLog() {
-       g = new Group(l1);
+        g = new Group(l1);
         assertEquals("", Log.getString());
     }
 
     public void testAddPointLog() {
-       g.add(p1);
+        g.add(p1);
         assertEquals("adding Point;", Log.getString());
     }
     public void testAddNonPointLog() {
-       g.add(l1);
+        g.add(l1);
         assertEquals("", Log.getString());
     }
 }
index 6c135e91c05a045f3188cfe627cb96ca3ef70fe7..292a0213da78525e3cbc3c0111b4bb78845c5748 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -34,14 +34,14 @@ public class Test3c extends Test {
     }
 
     public void testMoveLonePoint() {
-       p1 = new Point(0, 0);
-       p1.move(37, 88);
+        p1 = new Point(0, 0);
+        p1.move(37, 88);
         assertEquals("moving as a part of null;", Log.getString());
     }
 
     public void testMoveGroupedPoint() {
-       g = new Group(p1);
-       p1.move(0, 0);
+        g = new Group(p1);
+        p1.move(0, 0);
         assertEquals("moving as a part of " + g + ";", Log.getString());
     }
 }
index ddb18415afcc5f05a3b4eda0f16522282d9c7b8a..7e8f0f2347da060787eed0a75c67909bc0333733 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -19,8 +19,8 @@ import junit.framework.*;
 
 public class Test4a extends Test {
     Rectangle wholeCanvas =
-       new Rectangle(FigureElement.MIN_VALUE, FigureElement.MIN_VALUE,
-                     FigureElement.MAX_VALUE, FigureElement.MAX_VALUE);
+        new Rectangle(FigureElement.MIN_VALUE, FigureElement.MIN_VALUE,
+                      FigureElement.MAX_VALUE, FigureElement.MAX_VALUE);
 
     public Test4a(String name) { super(name); }
 
index 60928950881ab35ed991f71565e451b5e6046a3b..31bea52096ec446319243d0d6b8ba54f8fccf4f2 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -30,30 +30,30 @@ public class Test4b extends Test {
     }
 
     public void testBasicEquality() {
-       assertTrue(g.getBounds() == g.getBounds());
+        assertTrue(g.getBounds() == g.getBounds());
     }
 
     public void testEqualityAfterAddition() {
-       Point p0 = new Point(1, 2);
-       Point p1 = new Point(2, 3);
-
-       Group g0 = new Group(p0);
-       Group g1 = new Group(p1);
-
-       Rectangle r0 = g0.getBounds();
-       Rectangle r1 = g1.getBounds();
-       assertTrue(r0 != r1);
-       g0.add(new Point(37, 90));
-       assertTrue(g0.getBounds() == r0);
-       assertTrue(g1.getBounds() != r0);
-       assertTrue(g0.getBounds() != r1);
-       assertTrue(g1.getBounds() == r1);
-
-       g1.add(new Point(4, 8));
-       assertTrue(g0.getBounds() == r0);
-       assertTrue(g1.getBounds() != r0);
-       assertTrue(g0.getBounds() != r1);
-       assertTrue(g1.getBounds() == r1);
+        Point p0 = new Point(1, 2);
+        Point p1 = new Point(2, 3);
+
+        Group g0 = new Group(p0);
+        Group g1 = new Group(p1);
+
+        Rectangle r0 = g0.getBounds();
+        Rectangle r1 = g1.getBounds();
+        assertTrue(r0 != r1);
+        g0.add(new Point(37, 90));
+        assertTrue(g0.getBounds() == r0);
+        assertTrue(g1.getBounds() != r0);
+        assertTrue(g0.getBounds() != r1);
+        assertTrue(g1.getBounds() == r1);
+
+        g1.add(new Point(4, 8));
+        assertTrue(g0.getBounds() == r0);
+        assertTrue(g1.getBounds() != r0);
+        assertTrue(g0.getBounds() != r1);
+        assertTrue(g1.getBounds() == r1);
     }
 
     public void testNotWholeCanvas() {
index b5bf8f708aef9ffccc69f653da759f76792f3b0e..1f30a9ae34aaa8ffac7fa53067bd13da5298996e 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -30,54 +30,54 @@ public class Test4c extends Test {
     }
 
     public void testBasicEquality() {
-       assertTrue(g.getBounds() == g.getBounds());
+        assertTrue(g.getBounds() == g.getBounds());
     }
 
     public void testEqualityAfterAddition() {
-       Point p0 = new Point(1, 2);
-       Point p1 = new Point(2, 3);
-
-       Group g0 = new Group(p0);
-       Group g1 = new Group(p1);
-
-       Rectangle r0 = g0.getBounds();
-       Rectangle r1 = g1.getBounds();
-       assertTrue(r0 != r1);
-       g0.add(new Point(37, 90));
-       assertTrue(g0.getBounds() == r0);
-       assertTrue(g1.getBounds() != r0);
-       assertTrue(g0.getBounds() != r1);
-       assertTrue(g1.getBounds() == r1);
-
-       g1.add(new Point(4, 8));
-       assertTrue(g0.getBounds() == r0);
-       assertTrue(g1.getBounds() != r0);
-       assertTrue(g0.getBounds() != r1);
-       assertTrue(g1.getBounds() == r1);
+        Point p0 = new Point(1, 2);
+        Point p1 = new Point(2, 3);
+
+        Group g0 = new Group(p0);
+        Group g1 = new Group(p1);
+
+        Rectangle r0 = g0.getBounds();
+        Rectangle r1 = g1.getBounds();
+        assertTrue(r0 != r1);
+        g0.add(new Point(37, 90));
+        assertTrue(g0.getBounds() == r0);
+        assertTrue(g1.getBounds() != r0);
+        assertTrue(g0.getBounds() != r1);
+        assertTrue(g1.getBounds() == r1);
+
+        g1.add(new Point(4, 8));
+        assertTrue(g0.getBounds() == r0);
+        assertTrue(g1.getBounds() != r0);
+        assertTrue(g0.getBounds() != r1);
+        assertTrue(g1.getBounds() == r1);
     }
 
     public void testEqualityAfterMove() {
-       Point p0 = new Point(1, 2);
-       Point p1 = new Point(2, 3);
-
-       Group g0 = new Group(p0);
-       Group g1 = new Group(p1);
-
-       Rectangle r0 = g0.getBounds();
-       Rectangle r1 = g1.getBounds();
-       assertTrue(r0 != r1);
-       assertTrue(g0.getBounds() == r0);
-       assertTrue(g1.getBounds() != r0);
-       assertTrue(g0.getBounds() != r1);
-       assertTrue(g1.getBounds() == r1);
-
-       g0.move(3, 1);
-       Rectangle r00 = g0.getBounds();
-       Rectangle r10 = g1.getBounds();
-
-       assertTrue(r10 != r00);
-       assertTrue(r0 != r00);
-       assertTrue(g0.getBounds() == r00);
+        Point p0 = new Point(1, 2);
+        Point p1 = new Point(2, 3);
+
+        Group g0 = new Group(p0);
+        Group g1 = new Group(p1);
+
+        Rectangle r0 = g0.getBounds();
+        Rectangle r1 = g1.getBounds();
+        assertTrue(r0 != r1);
+        assertTrue(g0.getBounds() == r0);
+        assertTrue(g1.getBounds() != r0);
+        assertTrue(g0.getBounds() != r1);
+        assertTrue(g1.getBounds() == r1);
+
+        g0.move(3, 1);
+        Rectangle r00 = g0.getBounds();
+        Rectangle r10 = g1.getBounds();
+
+        assertTrue(r10 != r00);
+        assertTrue(r0 != r00);
+        assertTrue(g0.getBounds() == r00);
     }
 }
 
index e4458c6a44c951583b2ddd73a944cbab10543510..c1871cfd080dfdd1bba19cfe1e4e3752d40333ea 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -30,51 +30,51 @@ public class Test4d extends Test {
     }
 
     public void testBasicEquality() {
-       assertTrue(g.getBounds() == g.getBounds());
+        assertTrue(g.getBounds() == g.getBounds());
     }
 
     public void testNonGroupMove() {
-       p1.move(3, 27);
+        p1.move(3, 27);
     }
 
     public void testEqualityAfterAddition() {
-       Rectangle r = g.getBounds();
-       g.add(new Point(37, 90));
-       assertTrue(g.getBounds() == r);
+        Rectangle r = g.getBounds();
+        g.add(new Point(37, 90));
+        assertTrue(g.getBounds() == r);
     }
 
     public void testEqualityAfterMove() {
-       Point p0 = new Point(1, 2);
-       Point p1 = new Point(2, 3);
-
-       Group g0 = new Group(p0);
-       Group g1 = new Group(p1);
-
-       Rectangle r0 = g0.getBounds();
-       Rectangle r1 = g1.getBounds();
-       assertTrue(r0 != r1);
-       assertTrue(g0.getBounds() == r0);
-       assertTrue(g1.getBounds() != r0);
-       assertTrue(g0.getBounds() != r1);
-       assertTrue(g1.getBounds() == r1);
-
-       p0.move(3, 1);
-       Rectangle r00 = g0.getBounds();
-       Rectangle r10 = g1.getBounds();
-
-       assertTrue(r10 != r00);
-       assertTrue(r0 != r00);
-       assertTrue(g0.getBounds() == r00);
+        Point p0 = new Point(1, 2);
+        Point p1 = new Point(2, 3);
+
+        Group g0 = new Group(p0);
+        Group g1 = new Group(p1);
+
+        Rectangle r0 = g0.getBounds();
+        Rectangle r1 = g1.getBounds();
+        assertTrue(r0 != r1);
+        assertTrue(g0.getBounds() == r0);
+        assertTrue(g1.getBounds() != r0);
+        assertTrue(g0.getBounds() != r1);
+        assertTrue(g1.getBounds() == r1);
+
+        p0.move(3, 1);
+        Rectangle r00 = g0.getBounds();
+        Rectangle r10 = g1.getBounds();
+
+        assertTrue(r10 != r00);
+        assertTrue(r0 != r00);
+        assertTrue(g0.getBounds() == r00);
     }
 
     public void testEqualityAfterMove0() {
-       g = new Group(p1);
-       Rectangle r0 = g.getBounds();
-       assertTrue(g.getBounds() == r0);
-       p1.move(3, 1);
-       Rectangle r1 = g.getBounds();
-       assertTrue(r0 != r1);
-       assertTrue(r1 == g.getBounds());
+        g = new Group(p1);
+        Rectangle r0 = g.getBounds();
+        assertTrue(g.getBounds() == r0);
+        p1.move(3, 1);
+        Rectangle r1 = g.getBounds();
+        assertTrue(r0 != r1);
+        assertTrue(r1 == g.getBounds());
     }
 }
 
index f6a3635d25d330ec5cb56f25c9ad188383893b83..91710b0eac6c7e3adb95af6bd780be1a1dba7ccb 100644 (file)
@@ -1,13 +1,13 @@
 /* *******************************************************************
  * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Common Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/cpl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package tests;
@@ -30,38 +30,38 @@ public class Test4e extends Test {
     }
 
     public void testBasicEquality() {
-       assertTrue(g.getBounds() == g.getBounds());
+        assertTrue(g.getBounds() == g.getBounds());
     }
 
     public void testNonGroupMove() {
-       p1.move(3, 27);
+        p1.move(3, 27);
     }
 
     public void testEqualityAfterAddition() {
-       Rectangle r = g.getBounds();
-       g.add(new Point(37, 90));
-       assertTrue(g.getBounds() == r);
+        Rectangle r = g.getBounds();
+        g.add(new Point(37, 90));
+        assertTrue(g.getBounds() == r);
     }
 
     public void testEqualityAfterMove() {
-       g = new Group(p1);
-       Rectangle r0 = g.getBounds();
-       assertTrue(g.getBounds() == r0);
-       p1.move(3, 1);
-       Rectangle r1 = g.getBounds();
-       assertTrue(r0 != r1);
-       assertTrue(r1 == g.getBounds());
+        g = new Group(p1);
+        Rectangle r0 = g.getBounds();
+        assertTrue(g.getBounds() == r0);
+        p1.move(3, 1);
+        Rectangle r1 = g.getBounds();
+        assertTrue(r0 != r1);
+        assertTrue(r1 == g.getBounds());
     }
 
     public void testSecondEnclosingGroup() {
-       g = new Group(p1);
-       Group h = new Group(g);
-       Rectangle r0 = h.getBounds();
-       assertTrue(h.getBounds() == r0);
-       p1.move(3, 1);
-       Rectangle r1 = h.getBounds();
-       assertTrue(r0 != r1);
-       assertTrue(r1 == h.getBounds());
+        g = new Group(p1);
+        Group h = new Group(g);
+        Rectangle r0 = h.getBounds();
+        assertTrue(h.getBounds() == r0);
+        p1.move(3, 1);
+        Rectangle r1 = h.getBounds();
+        assertTrue(r0 != r1);
+        assertTrue(r1 == h.getBounds());
     }
 }