test/com/sun/javadoc/testLambdaFeature/TestLambdaFeature.java

changeset 1468
690c41cdab55
child 1606
ccbe7ffdd867
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/com/sun/javadoc/testLambdaFeature/TestLambdaFeature.java	Tue Dec 25 17:23:59 2012 -0800
     1.3 @@ -0,0 +1,102 @@
     1.4 +/*
     1.5 + * Copyright (c) 2012, 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      8004893
    1.30 + * @summary  Make sure that the lambda feature changes work fine in
    1.31 + *           javadoc.
    1.32 + * @author   bpatel
    1.33 + * @library  ../lib/
    1.34 + * @build    JavadocTester TestLambdaFeature
    1.35 + * @run main TestLambdaFeature
    1.36 + */
    1.37 +
    1.38 +public class TestLambdaFeature extends JavadocTester {
    1.39 +
    1.40 +    //Test information.
    1.41 +    private static final String BUG_ID = "8004893";
    1.42 +
    1.43 +    //Javadoc arguments.
    1.44 +    private static final String[] ARGS = new String[] {
    1.45 +        "-d", BUG_ID, "-sourcepath", SRC_DIR, "pkg"
    1.46 +    };
    1.47 +
    1.48 +    //Input for string search tests.
    1.49 +    private static final String[][] TEST = {
    1.50 +        {BUG_ID + FS + "pkg" + FS + "A.html",
    1.51 +            "<td class=\"colFirst\"><code>default void</code></td>"},
    1.52 +        {BUG_ID + FS + "pkg" + FS + "A.html",
    1.53 +            "<pre>default&nbsp;void&nbsp;defaultMethod()</pre>"},
    1.54 +        {BUG_ID + FS + "pkg" + FS + "A.html",
    1.55 +            "<caption><span id=\"t0\" class=\"activeTableTab\"><span>" +
    1.56 +            "All Methods</span><span class=\"tabEnd\">&nbsp;</span></span>" +
    1.57 +            "<span id=\"t2\" class=\"tableTab\"><span>" +
    1.58 +            "<a href=\"javascript:show(2);\">Instance Methods</a></span>" +
    1.59 +            "<span class=\"tabEnd\">&nbsp;</span></span><span id=\"t3\" " +
    1.60 +            "class=\"tableTab\"><span><a href=\"javascript:show(4);\">" +
    1.61 +            "Abstract Methods</a></span><span class=\"tabEnd\">&nbsp;</span>" +
    1.62 +            "</span><span id=\"t5\" class=\"tableTab\"><span>" +
    1.63 +            "<a href=\"javascript:show(16);\">Default Methods</a></span>" +
    1.64 +            "<span class=\"tabEnd\">&nbsp;</span></span></caption>"},
    1.65 +        {BUG_ID + FS + "pkg" + FS + "A.html",
    1.66 +            "<dl>" + NL + "<dt>Functional Interface:</dt>" + NL +
    1.67 +            "<dd>This is a functional interface and can therefore be used as " +
    1.68 +            "the assignment target for a lambda expression or method " +
    1.69 +            "reference. </dd>" + NL + "</dl>"}
    1.70 +    };
    1.71 +    private static final String[][] NEGATED_TEST = {
    1.72 +        {BUG_ID + FS + "pkg" + FS + "A.html",
    1.73 +            "<td class=\"colFirst\"><code>default default void</code></td>"},
    1.74 +        {BUG_ID + FS + "pkg" + FS + "A.html",
    1.75 +            "<pre>default&nbsp;default&nbsp;void&nbsp;defaultMethod()</pre>"},
    1.76 +        {BUG_ID + FS + "pkg" + FS + "B.html",
    1.77 +            "<td class=\"colFirst\"><code>default void</code></td>"},
    1.78 +        {BUG_ID + FS + "pkg" + FS + "B.html",
    1.79 +            "<dl>" + NL + "<dt>Functional Interface:</dt>"}
    1.80 +    };
    1.81 +
    1.82 +    /**
    1.83 +     * The entry point of the test.
    1.84 +     * @param args the array of command line arguments.
    1.85 +     */
    1.86 +    public static void main(String[] args) {
    1.87 +        TestLambdaFeature tester = new TestLambdaFeature();
    1.88 +        run(tester, ARGS, TEST, NEGATED_TEST);
    1.89 +        tester.printSummary();
    1.90 +    }
    1.91 +
    1.92 +    /**
    1.93 +     * {@inheritDoc}
    1.94 +     */
    1.95 +    public String getBugId() {
    1.96 +        return BUG_ID;
    1.97 +    }
    1.98 +
    1.99 +    /**
   1.100 +     * {@inheritDoc}
   1.101 +     */
   1.102 +    public String getBugName() {
   1.103 +        return getClass().getName();
   1.104 +    }
   1.105 +}

mercurial