test/com/sun/javadoc/testSimpleTagInherit/TestSimpleTagInherit.java

Wed, 08 Oct 2014 14:16:40 -0700

author
asaha
date
Wed, 08 Oct 2014 14:16:40 -0700
changeset 2586
f5e5ca7505e2
parent 2147
130b8c0e570e
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 2013, 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      8008768 8026567
    27  * @summary  Using {@inheritDoc} in simple tag defined via -tag fails
    28  * @library  ../lib/
    29  * @build    JavadocTester TestSimpleTagInherit
    30  * @run main TestSimpleTagInherit
    31  */
    33 public class TestSimpleTagInherit extends JavadocTester {
    35     //Test information.
    36     private static final String BUG_ID = "8008768";
    37     private static final String OUTPUT_DIR = BUG_ID;
    39     //Javadoc arguments.
    40     private static final String[] ARGS = new String[] {
    41         "-d", OUTPUT_DIR, "-sourcepath", SRC_DIR,
    42         "-tag", "custom:optcm:<em>Custom:</em>",
    43         "p"
    44     };
    46     //Input for string search tests.
    47     private static final String[][] TEST = {
    48         { BUG_ID + FS + "p" + FS + "TestClass.html",
    49           "<dt><span class=\"simpleTagLabel\"><em>Custom:</em></span></dt>" + NL +
    50           "<dd>doc for BaseClass class</dd>" },
    51         { BUG_ID + FS + "p" + FS + "TestClass.html",
    52           "<dt><span class=\"simpleTagLabel\"><em>Custom:</em></span></dt>" + NL +
    53           "<dd>doc for BaseClass method</dd>" }
    54     };
    55     private static final String[][] NEGATED_TEST = NO_TEST;
    57     /**
    58      * The entry point of the test.
    59      * @param args the array of command line arguments.
    60      */
    61     public static void main(String[] args) {
    62         TestSimpleTagInherit tester = new TestSimpleTagInherit();
    63         run(tester, ARGS, TEST, NEGATED_TEST);
    64         tester.printSummary();
    65     }
    67     /**
    68      * {@inheritDoc}
    69      */
    70     public String getBugId() {
    71         return BUG_ID;
    72     }
    74     /**
    75      * {@inheritDoc}
    76      */
    77     public String getBugName() {
    78         return getClass().getName();
    79     }
    80 }

mercurial