shapeutilitiestests.java

来自「JfreeChart 常用图表例子」· Java 代码 · 共 196 行

JAVA
196
字号
/* ======================================================================== * JCommon : a free general purpose class library for the Java(tm) platform * ======================================================================== * * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. *  * Project Info:  http://www.jfree.org/jcommon/index.html * * This library is free software; you can redistribute it and/or modify it  * under the terms of the GNU Lesser General Public License as published by  * the Free Software Foundation; either version 2.1 of the License, or  * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public  * License for more details. * * You should have received a copy of the GNU Lesser General Public License  * along with this library; if not, write to the Free Software Foundation,  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc.  * in the United States and other countries.] *  * ------------------------ * ShapeUtilitiesTests.java * ------------------------ * (C) Copyright 2004, 2005, by Object Refinery Limited and Contributors. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   -; * * $Id: ShapeUtilitiesTests.java,v 1.5 2005/03/16 21:28:36 mungady Exp $ * * Changes * ------- * 26-Oct-2004 : Version 1 (DG); * 10-Nov-2004 : Extended test for equal shapes to include Ellipse2D (DG); * 16-Mar-2005 : Extended test for equal shapes to include Polygon (DG); * */package org.jfree.util.junit;import java.awt.Polygon;import java.awt.Shape;import java.awt.geom.Arc2D;import java.awt.geom.Ellipse2D;import java.awt.geom.GeneralPath;import java.awt.geom.Line2D;import java.awt.geom.Rectangle2D;import junit.framework.Test;import junit.framework.TestCase;import junit.framework.TestSuite;import org.jfree.util.ShapeUtilities;/** * Tests for the {@link ShapeUtilities} class. */public class ShapeUtilitiesTests extends TestCase {    /**     * Returns the tests as a test suite.     *     * @return The test suite.     */    public static Test suite() {        return new TestSuite(ShapeUtilitiesTests.class);    }    /**     * Constructs a new set of tests.     *     * @param name  the name of the tests.     */    public ShapeUtilitiesTests(final String name) {        super(name);    }    /**     * Tests the equal() method.     */    public void testEqualLine2Ds() {                // LINE2D        assertTrue(ShapeUtilities.equal((Line2D) null, (Line2D) null));        Line2D l1 = new Line2D.Float(1.0f, 2.0f, 3.0f, 4.0f);        Line2D l2 = new Line2D.Float(1.0f, 2.0f, 3.0f, 4.0f);        assertTrue(ShapeUtilities.equal(l1, l2));                l1 = new Line2D.Float(4.0f, 3.0f, 2.0f, 1.0f);        assertFalse(ShapeUtilities.equal(l1, l2));        l2 = new Line2D.Float(4.0f, 3.0f, 2.0f, 1.0f);        assertTrue(ShapeUtilities.equal(l1, l2));                l1 = new Line2D.Double(4.0f, 3.0f, 2.0f, 1.0f);        assertTrue(ShapeUtilities.equal(l1, l2));            }    /**     * Some checks for the equal(Shape, Shape) method.     */    public void testEqualShapes() {                // NULL        Shape s1 = null;        Shape s2 = null;        assertTrue(ShapeUtilities.equal(s1, s2));                // LINE2D        s1 = new Line2D.Double(1.0, 2.0, 3.0, 4.0);        assertFalse(ShapeUtilities.equal(s1, s2));        s2 = new Line2D.Double(1.0, 2.0, 3.0, 4.0);        assertTrue(ShapeUtilities.equal(s1, s2));        assertFalse(s1.equals(s2));                        // RECTANGLE2D        s1 = new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0);        assertFalse(ShapeUtilities.equal(s1, s2));        s2 = new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0);        assertTrue(ShapeUtilities.equal(s1, s2));        assertTrue(s1.equals(s2));  // Rectangle2D overrides equals()                // ELLIPSE2D        s1 = new Ellipse2D.Double(1.0, 2.0, 3.0, 4.0);        assertFalse(ShapeUtilities.equal(s1, s2));        s2 = new Ellipse2D.Double(1.0, 2.0, 3.0, 4.0);        assertTrue(ShapeUtilities.equal(s1, s2));        assertFalse(s1.equals(s2));                  // ARC2D        s1 = new Arc2D.Double(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, Arc2D.PIE);        assertFalse(ShapeUtilities.equal(s1, s2));        s2 = new Arc2D.Double(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, Arc2D.PIE);        assertTrue(ShapeUtilities.equal(s1, s2));        assertFalse(s1.equals(s2));                // POLYGON        Polygon p1 = new Polygon(new int[] {0, 1, 0}, new int[] {1, 0, 1}, 3);        Polygon p2 = new Polygon(new int[] {1, 1, 0}, new int[] {1, 0, 1}, 3);        s1 = p1;        s2 = p2;        assertFalse(ShapeUtilities.equal(s1, s2));        p2 = new Polygon(new int[] {0, 1, 0}, new int[] {1, 0, 1}, 3);        s2 = p2;        assertTrue(ShapeUtilities.equal(s1, s2));                        // GENERALPATH        GeneralPath g1 = new GeneralPath();        g1.moveTo(1.0f, 2.0f);        g1.lineTo(3.0f, 4.0f);        g1.curveTo(5.0f, 6.0f, 7.0f, 8.0f, 9.0f, 10.0f);        g1.quadTo(1.0f, 2.0f, 3.0f, 4.0f);        g1.closePath();        s1 = g1;        assertFalse(ShapeUtilities.equal(s1, s2));        GeneralPath g2 = new GeneralPath();        g2.moveTo(1.0f, 2.0f);        g2.lineTo(3.0f, 4.0f);        g2.curveTo(5.0f, 6.0f, 7.0f, 8.0f, 9.0f, 10.0f);        g2.quadTo(1.0f, 2.0f, 3.0f, 4.0f);        g2.closePath();        s2 = g2;        assertTrue(ShapeUtilities.equal(s1, s2));        assertFalse(s1.equals(s2));                    }  /**   * Some checks for the intersects() method,   */  public void testIntersects ()   {    final Rectangle2D r1 = new Rectangle2D.Float(0, 0, 100, 100);    final Rectangle2D r2 = new Rectangle2D.Float(0, 0, 100, 100);    assertTrue(ShapeUtilities.intersects(r1, r2));    r1.setRect(100, 0, 100, 0);    assertTrue(ShapeUtilities.intersects(r1, r2));    assertTrue(ShapeUtilities.intersects(r2, r1));    r1.setRect(0, 0, 0, 0);    assertTrue(ShapeUtilities.intersects(r1, r2));    assertTrue(ShapeUtilities.intersects(r2, r1));    r1.setRect(50, 50, 10, 0);    assertTrue(ShapeUtilities.intersects(r1, r2));    assertTrue(ShapeUtilities.intersects(r2, r1));  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?