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: JSplitPane - new tests


This patch (committed) adds some new tests for the JSplitPane class:

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

   * gnu/testlet/javax/swing/JSplitPane/MyJSplitPane.java: New file,
   * gnu/testlet/javax/swing/JSplitPane/paramString.java: New file,
   * gnu/testlet/javax/swing/JSplitPane/setResizeWeight.java: New file.

Regards,

Dave
Index: gnu/testlet/javax/swing/JSplitPane/MyJSplitPane.java
===================================================================
RCS file: gnu/testlet/javax/swing/JSplitPane/MyJSplitPane.java
diff -N gnu/testlet/javax/swing/JSplitPane/MyJSplitPane.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/JSplitPane/MyJSplitPane.java	28 May 2006 22:28:31 -0000
@@ -0,0 +1,39 @@
+/* MyJSplitPane.java -- provides access to protected methods.
+   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: not-a-test
+
+package gnu.testlet.javax.swing.JSplitPane;
+
+import javax.swing.JSplitPane;
+
+public class MyJSplitPane extends JSplitPane
+{
+  public MyJSplitPane()
+  {
+    super();
+  }
+  
+  public String paramString()
+  {
+    return super.paramString();
+  }
+}
Index: gnu/testlet/javax/swing/JSplitPane/paramString.java
===================================================================
RCS file: gnu/testlet/javax/swing/JSplitPane/paramString.java
diff -N gnu/testlet/javax/swing/JSplitPane/paramString.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/JSplitPane/paramString.java	28 May 2006 22:28:32 -0000
@@ -0,0 +1,41 @@
+/* paramString.java -- Checks for the paramString() method in the 
+       JSplitPane 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.4
+
+package gnu.testlet.javax.swing.JSplitPane;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.JSplitPane;
+
+public class paramString implements Testlet
+{
+  public void test(TestHarness harness)
+  {
+    MyJSplitPane s = new MyJSplitPane();
+    harness.check(s.paramString().endsWith(",continuousLayout=false,dividerSize=10,lastDividerLocation=0,oneTouchExpandable=false,orientation=HORIZONTAL_SPLIT"));
+    s.setOrientation(JSplitPane.VERTICAL_SPLIT);
+    harness.check(s.paramString().endsWith(",continuousLayout=false,dividerSize=10,lastDividerLocation=0,oneTouchExpandable=false,orientation=VERTICAL_SPLIT"));
+  }
+}
Index: gnu/testlet/javax/swing/JSplitPane/setResizeWeight.java
===================================================================
RCS file: gnu/testlet/javax/swing/JSplitPane/setResizeWeight.java
diff -N gnu/testlet/javax/swing/JSplitPane/setResizeWeight.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/JSplitPane/setResizeWeight.java	28 May 2006 22:28:32 -0000
@@ -0,0 +1,75 @@
+/* setResizeWeight.java -- Checks for the setResizeWeight() method in the 
+       JSplitPane 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.4
+
+package gnu.testlet.javax.swing.JSplitPane;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.util.List;
+
+import javax.swing.JSplitPane;
+
+public class setResizeWeight implements Testlet, PropertyChangeListener
+{
+  List events = new java.util.ArrayList();
+  
+  public void propertyChange(PropertyChangeEvent event)
+  {
+    events.add(event);
+  }
+  
+  public void test(TestHarness harness)
+  {
+    JSplitPane s = new JSplitPane();
+    s.addPropertyChangeListener(this);
+    s.setResizeWeight(0.33);
+    harness.check(s.getResizeWeight(), 0.33);
+    harness.check(events.size(), 1);
+    PropertyChangeEvent pce = (PropertyChangeEvent) events.get(0);
+    harness.check(pce.getPropertyName(), "resizeWeight");
+    harness.check(pce.getSource(), s);
+    harness.check(pce.getOldValue(), new Double(0.0));
+    harness.check(pce.getNewValue(), new Double(0.33));
+    
+    // check that setting the same value does not generate an event
+    events.clear();
+    s.setResizeWeight(0.33);
+    harness.check(events.size(), 0);
+    
+    // try a bad value
+    boolean pass = false;
+    try
+      {
+        s.setResizeWeight(-0.33);
+      }
+    catch (IllegalArgumentException e)
+      {
+        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]