test/com/sun/javadoc/testJavaFX/TestJavaFX.java

changeset 1606
ccbe7ffdd867
child 1743
6a5288a298fd
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/com/sun/javadoc/testJavaFX/TestJavaFX.java	Sun Feb 24 11:36:58 2013 -0800
     1.3 @@ -0,0 +1,109 @@
     1.4 +/*
     1.5 + * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.
    1.11 + *
    1.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.15 + * version 2 for more details (a copy is included in the LICENSE file that
    1.16 + * accompanied this code).
    1.17 + *
    1.18 + * You should have received a copy of the GNU General Public License version
    1.19 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.21 + *
    1.22 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.23 + * or visit www.oracle.com if you need additional information or have any
    1.24 + * questions.
    1.25 + */
    1.26 +
    1.27 +/*
    1.28 + * @test
    1.29 + * @bug 7112427
    1.30 + * @summary Test of the JavaFX doclet features.
    1.31 + * @author jvalenta
    1.32 + * @library ../lib/
    1.33 + * @build JavadocTester TestJavaFX
    1.34 + * @run main TestJavaFX
    1.35 + */
    1.36 +
    1.37 +public class TestJavaFX extends JavadocTester {
    1.38 +
    1.39 +    private static final String BUG_ID = "7112427";
    1.40 +
    1.41 +    private static final String[][] TEST =
    1.42 +        new String[][] {
    1.43 +            {"./" + BUG_ID + "/C.html",
    1.44 +                "<dt><span class=\"strong\">See Also:</span></dt><dd><a href=\"C.html#getRate()\"><code>getRate()</code></a>, " + NL +
    1.45 +                "<a href=\"C.html#setRate(double)\"><code>setRate(double)</code></a></dd>"},
    1.46 +            {"./" + BUG_ID + "/C.html",
    1.47 +                "<pre>public final&nbsp;void&nbsp;setRate(double&nbsp;value)</pre>" + NL +
    1.48 +                "<div class=\"block\">Sets the value of the property rate.</div>" + NL +
    1.49 +                "<dl><dt><span class=\"strong\">Property description:</span></dt>" },
    1.50 +            {"./" + BUG_ID + "/C.html",
    1.51 +                "<pre>public final&nbsp;double&nbsp;getRate()</pre>" + NL +
    1.52 +                "<div class=\"block\">Gets the value of the property rate.</div>" + NL +
    1.53 +                "<dl><dt><span class=\"strong\">Property description:</span></dt>" },
    1.54 +            {"./" + BUG_ID + "/C.html",
    1.55 +                "<td class=\"colLast\"><code><strong><a href=\"C.html#rateProperty\">rate</a></strong></code>" + NL +
    1.56 +                "<div class=\"block\">Defines the direction/speed at which the <code>Timeline</code> is expected to"},
    1.57 +            {"./" + BUG_ID + "/C.html",
    1.58 +                "<sub id=\"expert\">Expert tag text</sub>"},
    1.59 +            {"./" + BUG_ID + "/C.html",
    1.60 +                "<span class=\"strong\">Default value:</span>"},
    1.61 +            {"./" + BUG_ID + "/C.html",
    1.62 +                "<P>Sets the value of the property <CODE>Property</CODE>"},
    1.63 +            {"./" + BUG_ID + "/C.html",
    1.64 +                "<P>Gets the value of the property <CODE>Property</CODE>"},
    1.65 +            {"./" + BUG_ID + "/C.html",
    1.66 +                "<span class=\"strong\">Property description:</span>"},
    1.67 +            {"./" + BUG_ID + "/C.html",
    1.68 +                "<td class=\"colLast\"><code><strong><a href=\"C.html#setTestMethodProperty()\">setTestMethodProperty</a></strong>()</code>&nbsp;</td>" },
    1.69 +            {"./" + BUG_ID + "/C.html",
    1.70 +                "<h4>isPaused</h4>" + NL +
    1.71 +                "<pre>public final&nbsp;double&nbsp;isPaused()</pre>" + NL +
    1.72 +                "<div class=\"block\">Gets the value of the property paused.</div>" },
    1.73 +            {"./" + BUG_ID + "/D.html",
    1.74 +                "<h3>Properties inherited from class&nbsp;<a href=\"C.html\" title=\"class in &lt;Unnamed&gt;\">C</a></h3>" + NL +
    1.75 +                "<code><a href=\"C.html#pausedProperty\">paused</a>, <a href=\"C.html#rateProperty\">rate</a></code></li>" },
    1.76 +        };
    1.77 +    private static final String[][] NO_TEST =
    1.78 +        new String[][] {
    1.79 +            {"./" + BUG_ID + "/C.html",
    1.80 +                "A()"},
    1.81 +        };
    1.82 +
    1.83 +
    1.84 +    private static final String[] ARGS = new String[] {
    1.85 +        "-d", BUG_ID, "-sourcepath", SRC_DIR, "-private", "-javafx",
    1.86 +        SRC_DIR + FS + "C.java", SRC_DIR + FS + "D.java"
    1.87 +    };
    1.88 +
    1.89 +    /**
    1.90 +     * The entry point of the test.
    1.91 +     * @param args the array of command line arguments.
    1.92 +     */
    1.93 +    public static void main(String[] args) {
    1.94 +        TestJavaFX tester = new TestJavaFX();
    1.95 +        run(tester, ARGS, TEST, NO_TEST);
    1.96 +        tester.printSummary();
    1.97 +    }
    1.98 +
    1.99 +    /**
   1.100 +     * {@inheritDoc}
   1.101 +     */
   1.102 +    public String getBugId() {
   1.103 +        return BUG_ID;
   1.104 +    }
   1.105 +
   1.106 +    /**
   1.107 +     * {@inheritDoc}
   1.108 +     */
   1.109 +    public String getBugName() {
   1.110 +        return getClass().getName();
   1.111 +    }
   1.112 +}

mercurial