This is the mail archive of the
mauve-patches@sourceware.org
mailing list for the Mauve project.
FYI: AbstractButton.setHorizontal/VerticalAlignment() tests
- From: David Gilbert <david dot gilbert at object-refinery dot com>
- To: mauve-patches <mauve-patches at sources dot redhat dot com>
- Date: Fri, 07 Jul 2006 17:23:46 +0100
- Subject: FYI: AbstractButton.setHorizontal/VerticalAlignment() tests
This patch (committed) adds a couple of new tests for the AbstractButton
class:
2006-07-07 David Gilbert <david.gilbert@object-refinery.com>
*
gnu/testlet/javax/swing/AbstractButton/setHorizontalAlignment.java: New
test,
* gnu/testlet/javax/swing/AbstractButton/setVerticalAlignment.java:
New test.
Regards,
Dave
Index: gnu/testlet/javax/swing/AbstractButton/setHorizontalAlignment.java
===================================================================
RCS file: gnu/testlet/javax/swing/AbstractButton/setHorizontalAlignment.java
diff -N gnu/testlet/javax/swing/AbstractButton/setHorizontalAlignment.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/AbstractButton/setHorizontalAlignment.java 7 Jul 2006 16:20:35 -0000
@@ -0,0 +1,78 @@
+/* setHorizontalAlignment.java -- some checks for the setHorizontalAlignment()
+ method in the AbstractButton 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.5
+
+package gnu.testlet.javax.swing.AbstractButton;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.util.List;
+
+import javax.swing.AbstractButton;
+import javax.swing.JButton;
+import javax.swing.SwingConstants;
+
+public class setHorizontalAlignment implements Testlet, PropertyChangeListener
+{
+ List events = new java.util.ArrayList();
+
+ public void propertyChange(PropertyChangeEvent e)
+ {
+ events.add(e);
+ }
+
+ public void test(TestHarness harness)
+ {
+ AbstractButton b = new JButton("ABC");
+ b.addPropertyChangeListener(this);
+ b.setHorizontalAlignment(SwingConstants.RIGHT);
+ harness.check(b.getHorizontalAlignment(), SwingConstants.RIGHT);
+ PropertyChangeEvent e = (PropertyChangeEvent) events.get(0);
+ harness.check(e.getSource(), b);
+ harness.check(e.getPropertyName(), "horizontalAlignment");
+ harness.check(e.getOldValue(), new Integer(SwingConstants.CENTER));
+ harness.check(e.getNewValue(), new Integer(SwingConstants.RIGHT));
+
+ // setting the same value should generate no event
+ events.clear();
+ b.setHorizontalAlignment(SwingConstants.RIGHT);
+ harness.check(events.size(), 0);
+
+ // try an illegal argument
+ boolean pass = false;
+ try
+ {
+ b.setHorizontalAlignment(SwingConstants.NORTH);
+ }
+ catch (IllegalArgumentException ex)
+ {
+ pass = true;
+ }
+ harness.check(pass);
+
+ }
+
+}
Index: gnu/testlet/javax/swing/AbstractButton/setVerticalAlignment.java
===================================================================
RCS file: gnu/testlet/javax/swing/AbstractButton/setVerticalAlignment.java
diff -N gnu/testlet/javax/swing/AbstractButton/setVerticalAlignment.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/AbstractButton/setVerticalAlignment.java 7 Jul 2006 16:20:35 -0000
@@ -0,0 +1,78 @@
+/* setVerticalAlignment.java -- some checks for the setVerticalAlignment()
+ method in the AbstractButton 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.5
+
+package gnu.testlet.javax.swing.AbstractButton;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.util.List;
+
+import javax.swing.AbstractButton;
+import javax.swing.JButton;
+import javax.swing.SwingConstants;
+
+public class setVerticalAlignment implements Testlet, PropertyChangeListener
+{
+ List events = new java.util.ArrayList();
+
+ public void propertyChange(PropertyChangeEvent e)
+ {
+ events.add(e);
+ }
+
+ public void test(TestHarness harness)
+ {
+ AbstractButton b = new JButton("ABC");
+ b.addPropertyChangeListener(this);
+ b.setVerticalAlignment(SwingConstants.BOTTOM);
+ harness.check(b.getVerticalAlignment(), SwingConstants.BOTTOM);
+ PropertyChangeEvent e = (PropertyChangeEvent) events.get(0);
+ harness.check(e.getSource(), b);
+ harness.check(e.getPropertyName(), "verticalAlignment");
+ harness.check(e.getOldValue(), new Integer(SwingConstants.CENTER));
+ harness.check(e.getNewValue(), new Integer(SwingConstants.BOTTOM));
+
+ // setting the same value should generate no event
+ events.clear();
+ b.setVerticalAlignment(SwingConstants.BOTTOM);
+ harness.check(events.size(), 0);
+
+ // try an illegal argument
+ boolean pass = false;
+ try
+ {
+ b.setVerticalAlignment(SwingConstants.RIGHT);
+ }
+ catch (IllegalArgumentException ex)
+ {
+ pass = true;
+ }
+ harness.check(pass);
+
+ }
+
+}