test/com/sun/javadoc/testMemberSummary/TestMemberSummary.java

Tue, 28 Dec 2010 15:54:52 -0800

author
ohair
date
Tue, 28 Dec 2010 15:54:52 -0800
changeset 798
4868a36f6fd8
parent 766
90af8d87741f
child 1935
8c55df2442c1
permissions
-rw-r--r--

6962318: Update copyright year
Reviewed-by: xdono

     1 /*
     2  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  */
    24 /*
    25  * @test
    26  * @bug      4951228 6290760
    27  * @summary  Test the case where the overriden method returns a different
    28  *           type than the method in the child class.  Make sure the
    29  *           documentation is inherited but the return type isn't.
    30  * @author   jamieh
    31  * @library  ../lib/
    32  * @build    JavadocTester
    33  * @build    TestMemberSummary
    34  * @run main TestMemberSummary
    35  */
    37 public class TestMemberSummary extends JavadocTester {
    39     //Test information.
    40     private static final String BUG_ID = "4951228-6290760";
    42     //Javadoc arguments.
    43     private static final String[] ARGS = new String[] {
    44         "-d", BUG_ID, "-sourcepath", SRC_DIR, "pkg","pkg2"
    45     };
    47     //Input for string search tests.
    48     private static final String[][] TEST = {
    49         // Check return type in member summary.
    50         {BUG_ID + FS + "pkg" + FS + "PublicChild.html",
    51             "<code><a href=\"../pkg/PublicChild.html\" title=\"class in pkg\">PublicChild</a></code></td>" + NL +
    52             "<td class=\"colLast\"><code><strong><a href=\"../pkg/PublicChild.html#returnTypeTest()\">" +
    53             "returnTypeTest</a></strong>()</code>"
    54         },
    55         // Check return type in member detail.
    56         {BUG_ID + FS + "pkg" + FS + "PublicChild.html",
    57             "<pre>public&nbsp;<a href=\"../pkg/PublicChild.html\" title=\"class in pkg\">" +
    58             "PublicChild</a>&nbsp;returnTypeTest()</pre>"
    59         },
    61          // Legacy anchor dimensions (6290760)
    62         {BUG_ID + FS + "pkg2" + FS + "A.html",
    63             "<a name=\"f(java.lang.Object[])\">" + NL +
    64             "<!--   -->" + NL +
    65             "</a><a name=\"f(T[])\">" + NL +
    66             "<!--   -->" + NL +
    67             "</a>"
    68         },
    69     };
    70     private static final String[][] NEGATED_TEST = NO_TEST;
    72     /**
    73      * The entry point of the test.
    74      * @param args the array of command line arguments.
    75      */
    76     public static void main(String[] args) {
    77         TestMemberSummary tester = new TestMemberSummary();
    78         run(tester, ARGS, TEST, NEGATED_TEST);
    79         tester.printSummary();
    80     }
    82     /**
    83      * {@inheritDoc}
    84      */
    85     public String getBugId() {
    86         return BUG_ID;
    87     }
    89     /**
    90      * {@inheritDoc}
    91      */
    92     public String getBugName() {
    93         return getClass().getName();
    94     }
    95 }

mercurial