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: BasicInternalFrameTitlePane action tests


I committed this patch:

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

* gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/CloseAction/constructor.java: new test,
* gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/IconifyAction/constructor.java: new test,
* gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MaximizeAction/constructor.java: new test,
* gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MoveAction/constructor.java: new test,
* gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/RestoreAction/constructor.java: new test,
* gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/SizeAction/constructor.java: new test.


Regards,

Dave Gilbert
Index: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/CloseAction/constructor.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/CloseAction/constructor.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/CloseAction/constructor.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/CloseAction/constructor.java	15 Sep 2005 20:41:52 -0000
@@ -0,0 +1,51 @@
+// 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 Mauve; 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.BasicInternalFrameTitlePane.CloseAction;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.JInternalFrame;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane.CloseAction;
+
+/**
+ * Some checks for the constructor.
+ */
+public class constructor implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness) 
+  {
+    JInternalFrame f = new JInternalFrame();
+    BasicInternalFrameTitlePane p = new BasicInternalFrameTitlePane(f);
+    CloseAction a = p.new CloseAction();
+    harness.check(a.getValue("Name"), "Close");
+  }
+  
+}
Index: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/IconifyAction/constructor.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/IconifyAction/constructor.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/IconifyAction/constructor.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/IconifyAction/constructor.java	15 Sep 2005 20:41:52 -0000
@@ -0,0 +1,51 @@
+// 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 Mauve; 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.BasicInternalFrameTitlePane.IconifyAction;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.JInternalFrame;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane.IconifyAction;
+
+/**
+ * Some checks for the constructor.
+ */
+public class constructor implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness) 
+  {
+    JInternalFrame f = new JInternalFrame();
+    BasicInternalFrameTitlePane p = new BasicInternalFrameTitlePane(f);
+    IconifyAction a = p.new IconifyAction();
+    harness.check(a.getValue("Name"), "Minimize");
+  }
+  
+}
Index: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MaximizeAction/constructor.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MaximizeAction/constructor.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MaximizeAction/constructor.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MaximizeAction/constructor.java	15 Sep 2005 20:41:52 -0000
@@ -0,0 +1,51 @@
+// 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 Mauve; 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.BasicInternalFrameTitlePane.MaximizeAction;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.JInternalFrame;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane.MaximizeAction;
+
+/**
+ * Some checks for the constructor.
+ */
+public class constructor implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness) 
+  {
+    JInternalFrame f = new JInternalFrame();
+    BasicInternalFrameTitlePane p = new BasicInternalFrameTitlePane(f);
+    MaximizeAction a = p.new MaximizeAction();
+    harness.check(a.getValue("Name"), "Maximize");
+  }
+  
+}
Index: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MoveAction/constructor.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MoveAction/constructor.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MoveAction/constructor.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/MoveAction/constructor.java	15 Sep 2005 20:41:52 -0000
@@ -0,0 +1,51 @@
+// 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 Mauve; 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.BasicInternalFrameTitlePane.MoveAction;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.JInternalFrame;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane.MoveAction;
+
+/**
+ * Some checks for the constructor.
+ */
+public class constructor implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness) 
+  {
+    JInternalFrame f = new JInternalFrame();
+    BasicInternalFrameTitlePane p = new BasicInternalFrameTitlePane(f);
+    MoveAction a = p.new MoveAction();
+    harness.check(a.getValue("Name"), "Move");
+  }
+  
+}
Index: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/RestoreAction/constructor.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/RestoreAction/constructor.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/RestoreAction/constructor.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/RestoreAction/constructor.java	15 Sep 2005 20:41:52 -0000
@@ -0,0 +1,51 @@
+// 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 Mauve; 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.BasicInternalFrameTitlePane.RestoreAction;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.JInternalFrame;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane.RestoreAction;
+
+/**
+ * Some checks for the constructor.
+ */
+public class constructor implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness) 
+  {
+    JInternalFrame f = new JInternalFrame();
+    BasicInternalFrameTitlePane p = new BasicInternalFrameTitlePane(f);
+    RestoreAction a = p.new RestoreAction();
+    harness.check(a.getValue("Name"), "Restore");
+  }
+  
+}
Index: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/SizeAction/constructor.java
===================================================================
RCS file: gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/SizeAction/constructor.java
diff -N gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/SizeAction/constructor.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/plaf/basic/BasicInternalFrameTitlePane/SizeAction/constructor.java	15 Sep 2005 20:41:52 -0000
@@ -0,0 +1,51 @@
+// 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 Mauve; 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.BasicInternalFrameTitlePane.SizeAction;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.JInternalFrame;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane;
+import javax.swing.plaf.basic.BasicInternalFrameTitlePane.SizeAction;
+
+/**
+ * Some checks for the constructor.
+ */
+public class constructor implements Testlet 
+{
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness) 
+  {
+    JInternalFrame f = new JInternalFrame();
+    BasicInternalFrameTitlePane p = new BasicInternalFrameTitlePane(f);
+    SizeAction a = p.new SizeAction();
+    harness.check(a.getValue("Name"), "Size");
+  }
+  
+}

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