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 FlowView test


Here comes a test for javax.swing.text.FlowView.

2006-02-07  Roman Kennke  <kennke@aicas.com>

        * gnu/testlet/javax/swing/text/FlowView/TestFlowView.java: New
        helper class.
        * gnu/testlet/javax/swing/text/FlowView/getFlowAxis: New
        test class.

/Roman
Index: gnu/testlet/javax/swing/text/FlowView/TestFlowView.java
===================================================================
RCS file: gnu/testlet/javax/swing/text/FlowView/TestFlowView.java
diff -N gnu/testlet/javax/swing/text/FlowView/TestFlowView.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/text/FlowView/TestFlowView.java	7 Feb 2006 14:19:18 -0000
@@ -0,0 +1,59 @@
+/* TestFlowView.java -- A concrete FlowView for testing
+   Copyright (C) 2006 Roman Kennke (kennke@aicas.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.text.FlowView;
+
+import javax.swing.text.Element;
+import javax.swing.text.FlowView;
+import javax.swing.text.View;
+
+/**
+ * A concrete subclass of FlowView that can be used to test the FlowView.
+ *
+ * @author Roman Kennke (kennke@aicas.com)
+ */
+public class TestFlowView extends FlowView
+{
+
+  /**
+   * Constructs a new TestFlowView by calling super.
+   *
+   * @param element the element
+   * @param axis the axis
+   */
+  public TestFlowView(Element element, int axis)
+  {
+    super(element, axis);
+  }
+
+  /**
+   * Creates a row.
+   *
+   * @return a view for one row
+   */
+  protected View createRow()
+  {
+    return null;
+  }
+
+}
Index: gnu/testlet/javax/swing/text/FlowView/getFlowAxis.java
===================================================================
RCS file: gnu/testlet/javax/swing/text/FlowView/getFlowAxis.java
diff -N gnu/testlet/javax/swing/text/FlowView/getFlowAxis.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/text/FlowView/getFlowAxis.java	7 Feb 2006 14:19:18 -0000
@@ -0,0 +1,56 @@
+/* getFlowAxis.java -- Tests FlowView.getFlowAxis()
+   Copyright (C) 2006 Roman Kennke (kennke@aicas.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.2
+// Uses: TestFlowView
+
+package gnu.testlet.javax.swing.text.FlowView;
+
+import javax.swing.text.DefaultStyledDocument;
+import javax.swing.text.Element;
+import javax.swing.text.View;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+/**
+ * Tests the FlowView.getFlowAxis() method.
+ *
+ * @author Roman Kennke (kennke@aicas.com)
+ */
+public class getFlowAxis implements Testlet
+{
+
+  /**
+   * The entry point into the test.
+   *
+   * @param harness the test harness to use
+   */
+  public void test(TestHarness harness)
+  {
+    DefaultStyledDocument doc = new DefaultStyledDocument();
+    Element el = doc.new BranchElement(null, null);
+    TestFlowView v = new TestFlowView(el, View.X_AXIS);
+    harness.check(v.getFlowAxis(), View.Y_AXIS);
+    v = new TestFlowView(el, View.Y_AXIS);
+    harness.check(v.getFlowAxis(), View.X_AXIS);
+  }
+}

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