author | duke |
Wed, 05 Jul 2017 17:02:26 +0200 | |
changeset 4078 | 51dff5eb0264 |
parent 1787 | 1aa079321cd2 |
child 5520 | 86e4b9a9da40 |
permissions | -rw-r--r-- |
10 | 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> <A HREF=\"../pkg/PublicChild.html\" " + |
|
52 |
"title=\"class in pkg\">PublicChild</A></CODE></FONT></TD>" + NL + |
|
1787
1aa079321cd2
6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents:
10
diff
changeset
|
53 |
"<TD><CODE><STRONG><A HREF=\"../pkg/PublicChild.html#" + |
1aa079321cd2
6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents:
10
diff
changeset
|
54 |
"returnTypeTest()\">returnTypeTest</A></STRONG>()</CODE>" |
10 | 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> " + |
|
1787
1aa079321cd2
6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents:
10
diff
changeset
|
60 |
"<STRONG>returnTypeTest</STRONG>()" |
10 | 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 |
} |