Package purrpackagedemo.round

Source Code of purrpackagedemo.round.EllipseTest

package purrpackagedemo.round;

import junit.framework.TestCase;
import purrpackagedemo.Point;

// PurrPackage recognizes old and new style JUnit conventions.
public class EllipseTest extends TestCase {
  Ellipse e;

  public void setUp() {
    e = new Ellipse( new Point( -1, 0 ), new Point( 1, 0), 4 );
  }

  public void testContains() {
    assertTrue( e.contains( Point.ORIGIN ));
    assertTrue( e.contains( new Point( 1, 1 )));
  }


}
TOP

Related Classes of purrpackagedemo.round.EllipseTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.