org.aspectj/docs/teaching/exercises/tests/Test4b.java

62 行
1.9 KiB
Java

/* *******************************************************************
* Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
2003-08-27 22:21:03 +02:00
* All rights reserved.
* This program and the accompanying materials are made available
2006-06-01 11:33:56 +02:00
* under the terms of the Eclipse Public License v1.0
2003-08-27 22:21:03 +02:00
* which accompanies this distribution and is available at
2006-06-01 11:33:56 +02:00
* http://www.eclipse.org/legal/epl-v10.html
2003-08-27 22:21:03 +02:00
*
* Contributors:
* PARC initial implementation
* ******************************************************************/
package tests;
import figures.*;
import java.awt.Rectangle;
import junit.framework.*;
public class Test4b extends CoreTest {
public static void main(String[] args) {
junit.textui.TestRunner.run(Test4b.class);
}
public void testBasicEquality() {
2003-08-27 22:21:03 +02:00
assertTrue(g.getBounds() == g.getBounds());
}
public void testEqualityAfterAddition() {
2003-08-27 22:21:03 +02:00
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() {
assertTrue("bounds for this group should not be the whole canvas",
2003-08-27 22:35:31 +02:00
g.getBounds().getWidth() < FigureElement.MAX_BOUNDS.getWidth());
assertTrue("bounds for this group should not be the whole canvas",
2003-08-27 22:35:31 +02:00
g.getBounds().getHeight() < FigureElement.MAX_BOUNDS.getHeight());
}
}