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]

RenderingHints.get() - small addition


I committed this patch:

2005-07-25  David Gilbert  <david.gilbert@object-refinery.com>

    * gnu/testlet/java/awt/RenderingHints/get.java: reformatted
    (test): added test for key with no value defined.

Sorry for mixing reformatting in with this small addition...

Regards,

Dave Gilbert


Index: gnu/testlet/java/awt/RenderingHints/get.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/java/awt/RenderingHints/get.java,v
retrieving revision 1.1
diff -u -r1.1 get.java
--- gnu/testlet/java/awt/RenderingHints/get.java	27 Aug 2004 19:54:32 -0000	1.1
+++ gnu/testlet/java/awt/RenderingHints/get.java	25 Jul 2005 08:06:51 -0000
@@ -1,23 +1,23 @@
-//Tags: JDK1.2
+// Tags: JDK1.2
 
-//Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
+// Copyright (C) 2004 David Gilbert <david.gilbert@object-refinery.com>
 
-//This file is part of Mauve.
+// This file is part of Mauve.
 
-//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.  */
+// 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.RenderingHints;
 
@@ -37,14 +37,15 @@
    * @param harness  the test harness (<code>null</code> not permitted).
    */
   public void test(TestHarness harness) {
-
-    RenderingHints h1 = new RenderingHints(
-      RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_OFF
-    );
-    harness.check(h1.get(RenderingHints.KEY_TEXT_ANTIALIASING).equals(RenderingHints.VALUE_TEXT_ANTIALIAS_OFF));
+    RenderingHints h1 = new RenderingHints(RenderingHints.KEY_TEXT_ANTIALIASING,
+            RenderingHints.VALUE_TEXT_ANTIALIAS_OFF);
+    harness.check(h1.get(RenderingHints.KEY_TEXT_ANTIALIASING).equals(
+            RenderingHints.VALUE_TEXT_ANTIALIAS_OFF));
+    harness.check(h1.get(RenderingHints.KEY_ALPHA_INTERPOLATION), null);
     harness.check(h1.get(null) == null);
     
-    // getting a key that is not a RenderingHints.Key generates a ClassCastException...
+    // using a key that is not a RenderingHints.Key generates a 
+    // ClassCastException...
     boolean pass = false;
     try
     {
@@ -55,7 +56,6 @@
       pass = true;
     }
     harness.check(pass);
-  
   }
 
 }

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