test/com/sun/javadoc/testXOption/TestXOption.java

Wed, 18 Sep 2013 22:47:06 -0700

author
bpatel
date
Wed, 18 Sep 2013 22:47:06 -0700
changeset 2036
8df12c315ea3
parent 1797
019063968164
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8024096: some javadoc tests may contain false positive results
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 2003, 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      8007687
    27  * @summary  Make sure that the -X option works properly.
    28  * @library  ../lib/
    29  * @build    JavadocTester TestXOption
    30  * @run main TestXOption
    31  */
    33 public class TestXOption extends JavadocTester {
    35     //Test information.
    36     private static final String BUG_ID = "8007687";
    38     //Javadoc arguments.
    39     private static final String[] ARGS = new String[] {
    40         "-d", BUG_ID, "-sourcepath", SRC_DIR, "-X",
    41             SRC_DIR + FS + "TestXOption.java"
    42     };
    44     private static final String[] ARGS2 = new String[] {
    45         "-d", BUG_ID, "-sourcepath", SRC_DIR,
    46             SRC_DIR + FS + "TestXOption.java"
    47     };
    49     private static final String[][] TEST = {
    50         {NOTICE_OUTPUT, "-Xmaxerrs "},
    51         {NOTICE_OUTPUT, "-Xmaxwarns "},
    52         {STANDARD_OUTPUT, "-Xdocrootparent "},
    53         {STANDARD_OUTPUT, "-Xdoclint "},
    54         {STANDARD_OUTPUT, "-Xdoclint:"},
    55     };
    56     private static final String[][] NEGATED_TEST = NO_TEST;
    58     //The help option should not crash the doclet.
    59     private static final int EXPECTED_EXIT_CODE = 0;
    61     /**
    62      * The entry point of the test.
    63      * @param args the array of command line arguments.
    64      */
    65     public static void main(String[] args) {
    66         TestXOption tester = new TestXOption();
    67         int actualExitCode = run(tester, ARGS, TEST, NEGATED_TEST);
    68         tester.checkExitCode(EXPECTED_EXIT_CODE, actualExitCode);
    69         tester.printSummary();
    70     }
    72     /**
    73      * {@inheritDoc}
    74      */
    75     public String getBugId() {
    76         return BUG_ID;
    77     }
    79     /**
    80      * {@inheritDoc}
    81      */
    82     public String getBugName() {
    83         return getClass().getName();
    84     }
    85 }

mercurial