public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
* FYI: JComponent - 2 new tests
@ 2006-06-28 14:59 David Gilbert
  0 siblings, 0 replies; only message in thread
From: David Gilbert @ 2006-06-28 14:59 UTC (permalink / raw)
  To: mauve-patches

[-- Attachment #1: Type: text/plain, Size: 388 bytes --]

This patch (committed) adds two new tests for the JComponent class:

2006-06-28  David Gilbert  <david.gilbert@object-refinery.com>

    * 
gnu/testlet/javax/swing/JComponent/getVerifyInputWhenFocusTarget.java: 
New test,
    * 
gnu/testlet/javax/swing/JComponent/setVerifyInputWhenFocusTarget.java: 
New test.

A patch to make GNU Classpath pass these tests will follow.

Regards,

Dave

[-- Attachment #2: diff.txt --]
[-- Type: text/plain, Size: 4616 bytes --]

Index: gnu/testlet/javax/swing/JComponent/getVerifyInputWhenFocusTarget.java
===================================================================
RCS file: gnu/testlet/javax/swing/JComponent/getVerifyInputWhenFocusTarget.java
diff -N gnu/testlet/javax/swing/JComponent/getVerifyInputWhenFocusTarget.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/JComponent/getVerifyInputWhenFocusTarget.java	28 Jun 2006 14:54:10 -0000
@@ -0,0 +1,42 @@
+/* getVerifyInputWhenFocusTarget.java -- some checks for the 
+       getVerifyInputWhenFocusTarget() method in the JComponent class.
+   Copyright (C) 2006 David Gilbert <david.gilbert@object-refinery.com>
+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, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+*/
+
+// Tags: JDK1.3
+
+package gnu.testlet.javax.swing.JComponent;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.JButton;
+import javax.swing.JComponent;
+
+public class getVerifyInputWhenFocusTarget implements Testlet
+{
+  public void test(TestHarness harness)
+  {
+    JComponent c = new JButton("ABC");
+    harness.check(c.getVerifyInputWhenFocusTarget(), true);
+    c.setVerifyInputWhenFocusTarget(false);
+    harness.check(c.getVerifyInputWhenFocusTarget(), false);
+  }
+}
Index: gnu/testlet/javax/swing/JComponent/setVerifyInputWhenFocusTarget.java
===================================================================
RCS file: gnu/testlet/javax/swing/JComponent/setVerifyInputWhenFocusTarget.java
diff -N gnu/testlet/javax/swing/JComponent/setVerifyInputWhenFocusTarget.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/JComponent/setVerifyInputWhenFocusTarget.java	28 Jun 2006 14:54:10 -0000
@@ -0,0 +1,67 @@
+/* setVerifyInputWhenFocusTarget.java -- some checks for the 
+       setVerifyInputWhenFocusTarget() method in the JComponent class.
+   Copyright (C) 2006 David Gilbert <david.gilbert@object-refinery.com>
+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, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+*/
+
+// Tags: JDK1.3
+
+package gnu.testlet.javax.swing.JComponent;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.util.List;
+
+import javax.swing.JButton;
+import javax.swing.JComponent;
+
+public class setVerifyInputWhenFocusTarget 
+  implements Testlet, PropertyChangeListener 
+{
+  List events = new java.util.ArrayList();
+  
+  public void propertyChange(PropertyChangeEvent e) 
+  {
+    events.add(e);
+  }
+
+  public void test(TestHarness harness) 
+  {
+    JComponent c = new JButton("ABC");
+    harness.check(c.getVerifyInputWhenFocusTarget(), true);
+    c.addPropertyChangeListener(this);
+    c.setVerifyInputWhenFocusTarget(false);
+    harness.check(c.getVerifyInputWhenFocusTarget(), false);
+    harness.check(events.size(), 1);
+    PropertyChangeEvent e0 = (PropertyChangeEvent) events.get(0);
+    harness.check(e0.getSource(), c);
+    harness.check(e0.getPropertyName(), "verifyInputWhenFocusTarget");
+    harness.check(e0.getOldValue(), Boolean.TRUE);
+    harness.check(e0.getNewValue(), Boolean.FALSE);
+    
+    // setting the same value generates no event
+    events.clear();
+    c.setVerifyInputWhenFocusTarget(false);
+    harness.check(events.size(), 0);
+  }
+
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-06-28 14:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-28 14:59 FYI: JComponent - 2 new tests David Gilbert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).