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

changeset 1
9a66ca7c79fa
child 182
47a62d8d98b4
equal deleted inserted replaced
-1:000000000000 1:9a66ca7c79fa
1 /*
2 * Copyright 2003-2005 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
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 */
36
37 public class TestMemberSummary extends JavadocTester {
38
39 //Test information.
40 private static final String BUG_ID = "4951228-6290760";
41
42 //Javadoc arguments.
43 private static final String[] ARGS = new String[] {
44 "-d", BUG_ID, "-sourcepath", SRC_DIR, "pkg","pkg2"
45 };
46
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>&nbsp;<A HREF=\"../pkg/PublicChild.html\" " +
52 "title=\"class in pkg\">PublicChild</A></CODE></FONT></TD>" + NL +
53 "<TD><CODE><B><A HREF=\"../pkg/PublicChild.html#" +
54 "returnTypeTest()\">returnTypeTest</A></B>()</CODE>"
55 },
56 // Check return type in member detail.
57 {BUG_ID + FS + "pkg" + FS + "PublicChild.html",
58 "public <A HREF=\"../pkg/PublicChild.html\" " +
59 "title=\"class in pkg\">PublicChild</A> " +
60 "<B>returnTypeTest</B>()"
61 },
62
63 // Legacy anchor dimensions (6290760)
64 {BUG_ID + FS + "pkg2" + FS + "A.html",
65 "<A NAME=\"f(java.lang.Object[])\"><!-- --></A><A NAME=\"f(T[])\"><!-- --></A>"
66 },
67 };
68 private static final String[][] NEGATED_TEST = NO_TEST;
69
70 /**
71 * The entry point of the test.
72 * @param args the array of command line arguments.
73 */
74 public static void main(String[] args) {
75 TestMemberSummary tester = new TestMemberSummary();
76 run(tester, ARGS, TEST, NEGATED_TEST);
77 tester.printSummary();
78 }
79
80 /**
81 * {@inheritDoc}
82 */
83 public String getBugId() {
84 return BUG_ID;
85 }
86
87 /**
88 * {@inheritDoc}
89 */
90 public String getBugName() {
91 return getClass().getName();
92 }
93 }

mercurial