author | bpatel |
Fri, 18 Oct 2013 16:34:42 -0700 | |
changeset 21478 | fa4c7cda1b41 |
parent 21008 | af0b915df7cc |
child 23971 | f5ff1f5a8dee |
permissions | -rw-r--r-- |
10 | 1 |
/* |
19253
b97b3e18547f
7198274: RFE : Javadoc Accessibility : Use CSS styles rather than <strong> or <i> tags
bpatel
parents:
7681
diff
changeset
|
2 |
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. |
10 | 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 |
* |
|
5520 | 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. |
|
10 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
21478
fa4c7cda1b41
8026567: Use meaningful style names for strong and italic styles.
bpatel
parents:
21008
diff
changeset
|
26 |
* @bug 4951228 6290760 8025633 8026567 |
10 | 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", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
51 |
"<code><a href=\"../pkg/PublicChild.html\" title=\"class in pkg\">PublicChild</a></code></td>" + NL + |
21478
fa4c7cda1b41
8026567: Use meaningful style names for strong and italic styles.
bpatel
parents:
21008
diff
changeset
|
52 |
"<td class=\"colLast\"><code><span class=\"memberNameLink\"><a href=\"../pkg/PublicChild.html#returnTypeTest--\">" + |
19253
b97b3e18547f
7198274: RFE : Javadoc Accessibility : Use CSS styles rather than <strong> or <i> tags
bpatel
parents:
7681
diff
changeset
|
53 |
"returnTypeTest</a></span>()</code>" |
10 | 54 |
}, |
55 |
// Check return type in member detail. |
|
56 |
{BUG_ID + FS + "pkg" + FS + "PublicChild.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
57 |
"<pre>public <a href=\"../pkg/PublicChild.html\" title=\"class in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
58 |
"PublicChild</a> returnTypeTest()</pre>" |
10 | 59 |
}, |
60 |
||
61 |
// Legacy anchor dimensions (6290760) |
|
62 |
{BUG_ID + FS + "pkg2" + FS + "A.html", |
|
21008
af0b915df7cc
8025633: Fix javadoc to generate valid anchor names
bpatel
parents:
19253
diff
changeset
|
63 |
"<a name=\"f-java.lang.Object:A-\">" + NL + |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
64 |
"<!-- -->" + NL + |
21008
af0b915df7cc
8025633: Fix javadoc to generate valid anchor names
bpatel
parents:
19253
diff
changeset
|
65 |
"</a><a name=\"f-T:A-\">" + NL + |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
66 |
"<!-- -->" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
67 |
"</a>" |
10 | 68 |
}, |
69 |
}; |
|
70 |
private static final String[][] NEGATED_TEST = NO_TEST; |
|
71 |
||
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 |
} |
|
81 |
||
82 |
/** |
|
83 |
* {@inheritDoc} |
|
84 |
*/ |
|
85 |
public String getBugId() { |
|
86 |
return BUG_ID; |
|
87 |
} |
|
88 |
||
89 |
/** |
|
90 |
* {@inheritDoc} |
|
91 |
*/ |
|
92 |
public String getBugName() { |
|
93 |
return getClass().getName(); |
|
94 |
} |
|
95 |
} |