This is the mail archive of the mauve-patches@sourceware.org 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]

FYI: new tests for BasicArrowButton


I committed these new tests:

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

* gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMaximumSize.java: new test,
* gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMinimumSize.java: new test,
* gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getPreferredSize.java: new test,
* gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/isFocusTraversable.java: new test.


Regards,

Dave
Index: gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMaximumSize.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMaximumSize.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMaximumSize.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMaximumSize.java	9 Sep 2005 04:32:13 -0000
@@ -0,0 +1,57 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2005 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 GNU Classpath; see the file COPYING.  If not, write to the
+// Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+// 02110-1301 USA.
+
+package gnu.testlet.javax.swing.plaf.basic.BasicArrowButton;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.Dimension;
+
+import javax.swing.SwingConstants;
+import javax.swing.plaf.basic.BasicArrowButton;
+
+/**
+ * Some checks for the getMaximumSize() method in the 
+ * {@link BasicArrowButton} class.  
+ */
+public class getMaximumSize implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)  
+  {
+    BasicArrowButton b = new BasicArrowButton(SwingConstants.NORTH);
+    harness.check(b.getMaximumSize(), new Dimension(Integer.MAX_VALUE, 
+            Integer.MAX_VALUE));  
+    
+    // setting the maximum size explicitly has no effect
+    b.setMaximumSize(new Dimension(12, 34));
+    harness.check(b.getMaximumSize(), new Dimension(Integer.MAX_VALUE, 
+            Integer.MAX_VALUE));  
+    
+  }
+
+}
Index: gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMinimumSize.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMinimumSize.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMinimumSize.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getMinimumSize.java	9 Sep 2005 04:32:13 -0000
@@ -0,0 +1,54 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2005 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 GNU Classpath; see the file COPYING.  If not, write to the
+// Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+// 02110-1301 USA.
+
+package gnu.testlet.javax.swing.plaf.basic.BasicArrowButton;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.Dimension;
+
+import javax.swing.SwingConstants;
+import javax.swing.plaf.basic.BasicArrowButton;
+
+/**
+ * Some checks for the getMinimumSize() method in the 
+ * {@link BasicArrowButton} class.  
+ */
+public class getMinimumSize implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)  
+  {
+    BasicArrowButton b = new BasicArrowButton(SwingConstants.NORTH);
+    harness.check(b.getMinimumSize(), new Dimension(5, 5));
+    
+    // setting the minimum size explicitly has no effect
+    b.setMinimumSize(new Dimension(12, 34));
+    harness.check(b.getMinimumSize(), new Dimension(5, 5));
+  }
+
+}
Index: gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getPreferredSize.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getPreferredSize.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getPreferredSize.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/getPreferredSize.java	9 Sep 2005 04:32:13 -0000
@@ -0,0 +1,54 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2005 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 GNU Classpath; see the file COPYING.  If not, write to the
+// Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+// 02110-1301 USA.
+
+package gnu.testlet.javax.swing.plaf.basic.BasicArrowButton;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.Dimension;
+
+import javax.swing.SwingConstants;
+import javax.swing.plaf.basic.BasicArrowButton;
+
+/**
+ * Some checks for the getPreferredSize() method in the 
+ * {@link BasicArrowButton} class.  
+ */
+public class getPreferredSize implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)  
+  {
+    BasicArrowButton b = new BasicArrowButton(SwingConstants.NORTH);
+    harness.check(b.getPreferredSize(), new Dimension(16, 16));
+    
+    // setting the preferred size explicitly has no effect
+    b.setPreferredSize(new Dimension(12, 34));
+    harness.check(b.getPreferredSize(), new Dimension(16, 16));
+  }
+
+}
Index: gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/isFocusTraversable.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/isFocusTraversable.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/isFocusTraversable.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicArrowButton/isFocusTraversable.java	9 Sep 2005 04:32:13 -0000
@@ -0,0 +1,48 @@
+// Tags: JDK1.2
+
+// Copyright (C) 2005 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 GNU Classpath; see the file COPYING.  If not, write to the
+// Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+// 02110-1301 USA.
+
+package gnu.testlet.javax.swing.plaf.basic.BasicArrowButton;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.SwingConstants;
+import javax.swing.plaf.basic.BasicArrowButton;
+
+/**
+ * Some checks for the isFocusTraversable() method in the 
+ * {@link BasicArrowButton} class.  
+ */
+public class isFocusTraversable implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)  
+  {
+    BasicArrowButton b = new BasicArrowButton(SwingConstants.NORTH);
+    harness.check(b.isFocusTraversable(), false);
+  }
+
+}

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