This is the mail archive of the mauve-patches@sources.redhat.com mailing list for the Mauve project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

java.awt.geom.Ellipse2D.Float


I've committed the following patch (see attached):

2004-10-20  David Gilbert  <david.gilbert@object-refinery.com>

	* gnu/testlet/java/awt/geom/Ellipse2D/Float/clone.java: New test.
	* gnu/testlet/java/awt/geom/Ellipse2D/Float/constructors.java:
	Likewise.
	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getBounds2D.java:
	Likewise.
	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getHeight.java:
	Likewise.
	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getWidth.java:
	Likewise.
	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getX.java: Likewise.
	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getY.java: Likewise.
	* gnu/testlet/java/awt/geom/Ellipse2D/Float/isEmpty.java:
	Likewise.
	* gnu/testlet/java/awt/geom/Ellipse2D/Float/setFrame.java:
	Likewise.

All checks pass for me using JamVM 1.2.0 and a recent CVS version of
Classpath.

Regards,

Dave Gilbert
http://www.jfree.org
Index: ChangeLog
===================================================================
RCS file: /cvs/mauve/mauve/ChangeLog,v
retrieving revision 1.703
diff -u -r1.703 ChangeLog
--- ChangeLog	20 Oct 2004 10:14:09 -0000	1.703
+++ ChangeLog	20 Oct 2004 10:36:30 -0000
@@ -1,5 +1,23 @@
 2004-10-20  David Gilbert  <david.gilbert@object-refinery.com>
 
+	* gnu/testlet/java/awt/geom/Ellipse2D/Float/clone.java: New test.
+	* gnu/testlet/java/awt/geom/Ellipse2D/Float/constructors.java:
+	Likewise.
+	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getBounds2D.java:
+	Likewise.
+	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getHeight.java:
+	Likewise.
+	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getWidth.java:
+	Likewise.
+	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getX.java: Likewise.
+	* gnu/testlet/java/awt/geom/Ellipse2D/Float/getY.java: Likewise.
+	* gnu/testlet/java/awt/geom/Ellipse2D/Float/isEmpty.java:
+	Likewise.
+	* gnu/testlet/java/awt/geom/Ellipse2D/Float/setFrame.java:
+	Likewise.
+	
+2004-10-20  David Gilbert  <david.gilbert@object-refinery.com>
+
 	* gnu/testlet/java/awt/geom/Ellipse2D/Double/clone.java: New test.
 	* gnu/testlet/java/awt/geom/Ellipse2D/Double/constructors.java:
 	Likewise.
Index: gnu/testlet/java/awt/geom/Ellipse2D/Float/clone.java
===================================================================
RCS file: gnu/testlet/java/awt/geom/Ellipse2D/Float/clone.java
diff -N gnu/testlet/java/awt/geom/Ellipse2D/Float/clone.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/awt/geom/Ellipse2D/Float/clone.java	20 Oct 2004 10:36:31 -0000
@@ -0,0 +1,51 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// Mauve 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 General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.  */
+
+package gnu.testlet.java.awt.geom.Ellipse2D.Float;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.geom.Ellipse2D;
+
+/**
+ * Some checks for the clone() method in the {@link Ellipse2D.Float} class.
+ */
+public class clone implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness) 
+  {
+    Ellipse2D e1 = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, 4.0f);
+    Ellipse2D e2 = null;
+    e2 = (Ellipse2D) e1.clone();
+    harness.check(e1.getX(), e2.getX());
+    harness.check(e1.getY(), e2.getY());
+    harness.check(e1.getWidth(), e2.getWidth());
+    harness.check(e1.getHeight(), e2.getHeight());
+    harness.check(e1.getClass(), e2.getClass());
+    harness.check(e1 != e2);
+  }
+
+}
Index: gnu/testlet/java/awt/geom/Ellipse2D/Float/constructors.java
===================================================================
RCS file: gnu/testlet/java/awt/geom/Ellipse2D/Float/constructors.java
diff -N gnu/testlet/java/awt/geom/Ellipse2D/Float/constructors.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/awt/geom/Ellipse2D/Float/constructors.java	20 Oct 2004 10:36:31 -0000
@@ -0,0 +1,56 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// Mauve 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 General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.  */
+
+package gnu.testlet.java.awt.geom.Ellipse2D.Float;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.geom.Ellipse2D;
+
+/**
+ * Some checks for the constructors for the {@link Ellipse2D.Float} class.
+ */
+public class constructors implements Testlet {
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)      
+  {
+    // constructor 1
+    Ellipse2D e = new Ellipse2D.Float();
+    harness.check(e.getX(), 0.0);
+    harness.check(e.getY(), 0.0);
+    harness.check(e.getWidth(), 0.0);
+    harness.check(e.getHeight(), 0.0);
+    harness.check(e.isEmpty());
+
+    // constructor 2
+    e = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, 4.0f);
+    harness.check(e.getX(), 1.0);
+    harness.check(e.getY(), 2.0);
+    harness.check(e.getWidth(), 3.0);
+    harness.check(e.getHeight(), 4.0);
+    harness.check(!e.isEmpty());  
+  }
+
+}
Index: gnu/testlet/java/awt/geom/Ellipse2D/Float/getBounds2D.java
===================================================================
RCS file: gnu/testlet/java/awt/geom/Ellipse2D/Float/getBounds2D.java
diff -N gnu/testlet/java/awt/geom/Ellipse2D/Float/getBounds2D.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/awt/geom/Ellipse2D/Float/getBounds2D.java	20 Oct 2004 10:36:31 -0000
@@ -0,0 +1,55 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// Mauve 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 General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.  */
+
+package gnu.testlet.java.awt.geom.Ellipse2D.Float;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.geom.Ellipse2D;
+import java.awt.geom.Rectangle2D;
+
+/**
+ * Some checks for the getBounds2D() method of the {@link Ellipse2D.Float} class.
+ */
+public class getBounds2D implements Testlet {
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)       
+  {
+    Ellipse2D e = new Ellipse2D.Float();
+    Rectangle2D b = e.getBounds2D();
+    harness.check(b.getX(), 0.0);
+    harness.check(b.getY(), 0.0);
+    harness.check(b.getWidth(), 0.0);
+    harness.check(b.getHeight(), 0.0);
+
+    e = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, 4.0f);
+    b = e.getBounds2D();
+    harness.check(b.getX(), 1.0);
+    harness.check(b.getY(), 2.0);
+    harness.check(b.getWidth(), 3.0);
+    harness.check(b.getHeight(), 4.0);
+  }
+
+}
Index: gnu/testlet/java/awt/geom/Ellipse2D/Float/getHeight.java
===================================================================
RCS file: gnu/testlet/java/awt/geom/Ellipse2D/Float/getHeight.java
diff -N gnu/testlet/java/awt/geom/Ellipse2D/Float/getHeight.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/awt/geom/Ellipse2D/Float/getHeight.java	20 Oct 2004 10:36:31 -0000
@@ -0,0 +1,46 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// Mauve 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 General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.  */
+
+package gnu.testlet.java.awt.geom.Ellipse2D.Float;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.geom.Ellipse2D;
+
+/**
+ * Some checks for the getHeight() method of the {@link Ellipse2D.Float} class.
+ */
+public class getHeight implements Testlet {
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)       
+  {
+    Ellipse2D e = new Ellipse2D.Float();
+    harness.check(e.getHeight(), 0.0);
+
+    e = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, 4.0f);
+    harness.check(e.getHeight(), 4.0);
+  }
+
+}
Index: gnu/testlet/java/awt/geom/Ellipse2D/Float/getWidth.java
===================================================================
RCS file: gnu/testlet/java/awt/geom/Ellipse2D/Float/getWidth.java
diff -N gnu/testlet/java/awt/geom/Ellipse2D/Float/getWidth.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/awt/geom/Ellipse2D/Float/getWidth.java	20 Oct 2004 10:36:31 -0000
@@ -0,0 +1,46 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// Mauve 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 General Public License for more details. 
+
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.  */
+
+package gnu.testlet.java.awt.geom.Ellipse2D.Float;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.geom.Ellipse2D;
+
+/**
+ * Some checks for the getWidth() method of the {@link Ellipse2D.Float} class.
+ */
+public class getWidth implements Testlet {
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)       
+  {
+    Ellipse2D e = new Ellipse2D.Float();
+    harness.check(e.getWidth(), 0.0);
+
+    e = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, 4.0f);
+    harness.check(e.getWidth(), 3.0);
+  }
+
+}
Index: gnu/testlet/java/awt/geom/Ellipse2D/Float/getX.java
===================================================================
RCS file: gnu/testlet/java/awt/geom/Ellipse2D/Float/getX.java
diff -N gnu/testlet/java/awt/geom/Ellipse2D/Float/getX.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/awt/geom/Ellipse2D/Float/getX.java	20 Oct 2004 10:36:31 -0000
@@ -0,0 +1,46 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// Mauve 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 General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.  */
+
+package gnu.testlet.java.awt.geom.Ellipse2D.Float;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.geom.Ellipse2D;
+
+/**
+ * Some checks for the getX() method of the {@link Ellipse2D.Float} class.
+ */
+public class getX implements Testlet {
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)        
+  {
+    Ellipse2D e = new Ellipse2D.Float();
+    harness.check(e.getX(), 0.0);
+
+    e = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, 4.0f);
+    harness.check(e.getX(), 1.0);
+  }
+
+}
Index: gnu/testlet/java/awt/geom/Ellipse2D/Float/getY.java
===================================================================
RCS file: gnu/testlet/java/awt/geom/Ellipse2D/Float/getY.java
diff -N gnu/testlet/java/awt/geom/Ellipse2D/Float/getY.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/awt/geom/Ellipse2D/Float/getY.java	20 Oct 2004 10:36:31 -0000
@@ -0,0 +1,46 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// Mauve 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 General Public License for more details. 
+
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.  */
+
+package gnu.testlet.java.awt.geom.Ellipse2D.Float;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.geom.Ellipse2D;
+
+/**
+ * Some checks for the getY() method of the {@link Ellipse2D.Float} class.
+ */
+public class getY implements Testlet {
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)       
+  {
+    Ellipse2D e = new Ellipse2D.Float();
+    harness.check(e.getY(), 0.0);
+
+    e = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, 4.0f);
+    harness.check(e.getY(), 2.0);
+  }
+
+}
Index: gnu/testlet/java/awt/geom/Ellipse2D/Float/isEmpty.java
===================================================================
RCS file: gnu/testlet/java/awt/geom/Ellipse2D/Float/isEmpty.java
diff -N gnu/testlet/java/awt/geom/Ellipse2D/Float/isEmpty.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/awt/geom/Ellipse2D/Float/isEmpty.java	20 Oct 2004 10:36:31 -0000
@@ -0,0 +1,52 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// Mauve 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 General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.  */
+
+package gnu.testlet.java.awt.geom.Ellipse2D.Float;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.geom.Ellipse2D;
+
+/**
+ * Some checks for the isEmpty() method of the {@link Ellipse2D.Float} class.
+ */
+public class isEmpty implements Testlet {
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)       
+  {
+    Ellipse2D e = new Ellipse2D.Float();
+    harness.check(e.isEmpty());
+
+    e = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, 4.0f);
+    harness.check(!e.isEmpty());
+
+    e = new Ellipse2D.Float(1.0f, 2.0f, -3.0f, 4.0f);
+    harness.check(e.isEmpty());
+
+    e = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, -4.0f);
+    harness.check(e.isEmpty());
+  }
+
+}
Index: gnu/testlet/java/awt/geom/Ellipse2D/Float/setFrame.java
===================================================================
RCS file: gnu/testlet/java/awt/geom/Ellipse2D/Float/setFrame.java
diff -N gnu/testlet/java/awt/geom/Ellipse2D/Float/setFrame.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/awt/geom/Ellipse2D/Float/setFrame.java	20 Oct 2004 10:36:31 -0000
@@ -0,0 +1,57 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// Mauve 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 General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.  */
+
+package gnu.testlet.java.awt.geom.Ellipse2D.Float;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.geom.Ellipse2D;
+import java.awt.geom.Rectangle2D;
+
+/**
+ * Some checks for the setFrame() method of the {@link Ellipse2D} class.
+ */
+public class setFrame implements Testlet {
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)         
+  {
+    Ellipse2D e = new Ellipse2D.Float(1.0f, 2.0f, 3.0f, 4.0f);
+    e.setFrame(0.0f, 0.0f, 0.0f, 0.0f);
+    Rectangle2D b = e.getBounds2D();
+    harness.check(b.getX(), 0.0);
+    harness.check(b.getY(), 0.0);
+    harness.check(b.getWidth(), 0.0);
+    harness.check(b.getHeight(), 0.0);
+
+    e = new Ellipse2D.Float();
+    e.setFrame(1.0f, 2.0f, 3.0f, 4.0f);
+    b = e.getBounds2D();
+    harness.check(b.getX(), 1.0);
+    harness.check(b.getY(), 2.0);
+    harness.check(b.getWidth(), 3.0);
+    harness.check(b.getHeight(), 4.0);
+  }
+
+}

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]