public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
* FYI: JScrollPane.getActionMap() test
@ 2006-06-08 11:12 David Gilbert
  0 siblings, 0 replies; only message in thread
From: David Gilbert @ 2006-06-08 11:12 UTC (permalink / raw)
  To: mauve-patches

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

This patch (committed) adds a test for the getActionMap() method in the 
JScrollPane class:

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

    * gnu/testlet/javax/swing/JScrollPane/getActionMap.java: New file.

Regards,

Dave

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

Index: gnu/testlet/javax/swing/JScrollPane/getActionMap.java
===================================================================
RCS file: gnu/testlet/javax/swing/JScrollPane/getActionMap.java
diff -N gnu/testlet/javax/swing/JScrollPane/getActionMap.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/JScrollPane/getActionMap.java	8 Jun 2006 11:09:15 -0000
@@ -0,0 +1,57 @@
+/* getActionMap.java -- some checks for the getActionMap() method in the
+       JScrollPane 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.JScrollPane;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.Action;
+import javax.swing.ActionMap;
+import javax.swing.JScrollPane;
+
+public class getActionMap implements Testlet
+{
+  public void test(TestHarness harness)
+  {
+    // this is the original version of the test - it shows no actions for
+    // a regular label...
+    JScrollPane p = new JScrollPane();
+    ActionMap m = p.getActionMap();
+    harness.check(m.keys(), null);
+    ActionMap mp = m.getParent();
+    harness.check(mp.get("scrollLeft") instanceof Action);
+    harness.check(mp.get("scrollEnd") instanceof Action);
+    harness.check(mp.get("unitScrollUp") instanceof Action);
+    harness.check(mp.get("unitScrollLeft") instanceof Action);
+    harness.check(mp.get("scrollUp") instanceof Action);
+    harness.check(mp.get("scrollRight") instanceof Action);
+    harness.check(mp.get("scrollHome") instanceof Action);
+    harness.check(mp.get("scrollDown") instanceof Action);
+    harness.check(mp.get("unitScrollDown") instanceof Action);
+    harness.check(mp.get("unitScrollRight") instanceof Action);
+//    for (int i = 0; i < mp.keys().length; i++)
+//        System.out.println(mp.keys()[i] + ", " + mp.get(mp.keys()[i]));
+  }
+}

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

only message in thread, other threads:[~2006-06-08 11:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-08 11:12 FYI: JScrollPane.getActionMap() test 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).