test/com/sun/javadoc/testClassCrossReferences/TestClassCrossReferences.java

changeset 1
9a66ca7c79fa
child 182
47a62d8d98b4
equal deleted inserted replaced
-1:000000000000 1:9a66ca7c79fa
1 /*
2 * Copyright 2002-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 4652655 4857717
27 * @summary This test verifies that class cross references work properly.
28 * @author jamieh
29 * @library ../lib/
30 * @build JavadocTester
31 * @build TestClassCrossReferences
32 * @run main TestClassCrossReferences
33 */
34
35 public class TestClassCrossReferences extends JavadocTester {
36
37 private static final String BUG_ID = "4652655-4857717";
38 private static final String[][] TEST = {
39 {BUG_ID + FS + "C.html",
40 "<A HREF=\"http://java.sun.com/j2se/1.4/docs/api/java/math/package-summary.html?is-external=true\"><CODE>Link to math package</CODE></A>"},
41 {BUG_ID + FS + "C.html",
42 "<A HREF=\"http://java.sun.com/j2se/1.4/docs/api/javax/swing/text/AbstractDocument.AttributeContext.html?is-external=true\" " +
43 "title=\"class or interface in javax.swing.text\"><CODE>Link to AttributeContext innerclass</CODE></A>"},
44 {BUG_ID + FS + "C.html",
45 "<A HREF=\"http://java.sun.com/j2se/1.4/docs/api/java/math/BigDecimal.html?is-external=true\" " +
46 "title=\"class or interface in java.math\"><CODE>Link to external class BigDecimal</CODE></A>"},
47 {BUG_ID + FS + "C.html",
48 "<A HREF=\"http://java.sun.com/j2se/1.4/docs/api/java/math/BigInteger.html?is-external=true#gcd(java.math.BigInteger)\" " +
49 "title=\"class or interface in java.math\"><CODE>Link to external member gcd</CODE></A>"},
50 {BUG_ID + FS + "C.html",
51 "<B>Overrides:</B><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE>"}
52 };
53 private static final String[][] NEGATED_TEST = NO_TEST;
54 private static final String[] ARGS =
55 new String[] {
56 "-d", BUG_ID, "-sourcepath", SRC_DIR,
57 "-linkoffline", "http://java.sun.com/j2se/1.4/docs/api/",
58 SRC_DIR, SRC_DIR + FS + "C.java"};
59
60 /**
61 * The entry point of the test.
62 * @param args the array of command line arguments.
63 */
64 public static void main(String[] args) {
65 TestClassCrossReferences tester = new TestClassCrossReferences();
66 run(tester, ARGS, TEST, NEGATED_TEST);
67 tester.printSummary();
68 }
69
70 /**
71 * {@inheritDoc}
72 */
73 public String getBugId() {
74 return BUG_ID;
75 }
76
77 /**
78 * {@inheritDoc}
79 */
80 public String getBugName() {
81 return getClass().getName();
82 }
83 }

mercurial