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

Tue, 25 May 2010 15:54:51 -0700

author
ohair
date
Tue, 25 May 2010 15:54:51 -0700
changeset 554
9d9f26857129
parent 233
5240b1120530
child 766
90af8d87741f
permissions
-rw-r--r--

6943119: Rebrand source copyright notices
Reviewed-by: darcy

     1 /*
     2  * Copyright (c) 2002, 2005, 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 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  */
    35 public class TestClassCrossReferences extends JavadocTester {
    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             "<STRONG>Overrides:</STRONG></DT><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"};
    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     }
    70     /**
    71      * {@inheritDoc}
    72      */
    73     public String getBugId() {
    74         return BUG_ID;
    75     }
    77     /**
    78      * {@inheritDoc}
    79      */
    80     public String getBugName() {
    81         return getClass().getName();
    82     }
    83 }

mercurial