test/com/sun/javadoc/testOverridenMethods/TestMultiInheritence.java

Sat, 01 Dec 2007 00:00:00 +0000

author
duke
date
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1
9a66ca7c79fa
child 401
dd98acd9f717
permissions
-rw-r--r--

Initial load

     1 /*
     2  * Copyright 2003-2004 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  */
    24 /*
    25  * @test
    26  * @bug      4933335
    27  * @summary  Make sure that all inherited methods from multiple extended
    28  *           interfaces are documented
    29  * @author   jamieh
    30  * @library  ../lib/
    31  * @build    JavadocTester
    32  * @build    TestMultiInheritence
    33  * @run main TestMultiInheritence
    34  */
    36 public class TestMultiInheritence extends JavadocTester {
    38     //Test information.
    39     private static final String BUG_ID = "4933335";
    41     //Javadoc arguments.
    42     private static final String[] ARGS = new String[] {
    43         "-d", BUG_ID, "-sourcepath", SRC_DIR, "pkg3"
    44     };
    46     //Method foo() is inherited from BOTH I2 and I3
    47     private static final String[][] TEST = {
    48        {BUG_ID + FS + "pkg3" + FS + "I1.html",
    49         "Methods inherited from interface pkg3." +
    50         "<A HREF=\"../pkg3/I2.html\" title=\"interface in pkg3\">I2</A>"},
    51         {BUG_ID + FS + "pkg3" + FS +"I1.html",
    52         "Methods inherited from interface pkg3." +
    53         "<A HREF=\"../pkg3/I3.html\" title=\"interface in pkg3\">I3</A>"},
    54         {BUG_ID + FS + "pkg3" + FS + "I0.html",
    55         "Methods inherited from interface pkg3." +
    56         "<A HREF=\"../pkg3/I2.html\" title=\"interface in pkg3\">I2</A>"},
    57         {BUG_ID + FS + "pkg3" + FS +"I0.html",
    58         "Methods inherited from interface pkg3." +
    59         "<A HREF=\"../pkg3/I3.html\" title=\"interface in pkg3\">I3</A>"},
    60     };
    62     //Method foo() is NOT inherited from I4 because it is overriden by
    63     //I3.
    64     private static final String[][] NEGATED_TEST = {
    65         {BUG_ID + FS + "pkg3" + FS + "I1.html",
    66         "Methods inherited from interface pkg3." +
    67         "<A HREF=\"../pkg3/I4.html\" title=\"interface in pkg3\">I4</A>"},
    68         {BUG_ID + FS + "pkg3" + FS + "I0.html",
    69         "Methods inherited from interface pkg3." +
    70         "<A HREF=\"../pkg3/I4.html\" title=\"interface in pkg3\">I4</A>"},
    71     };
    73     /**
    74      * The entry point of the test.
    75      * @param args the array of command line arguments.
    76      */
    77     public static void main(String[] args) {
    78         TestMultiInheritence tester = new TestMultiInheritence();
    79         run(tester, ARGS, TEST, NEGATED_TEST);
    80         tester.printSummary();
    81     }
    83     /**
    84      * {@inheritDoc}
    85      */
    86     public String getBugId() {
    87         return BUG_ID;
    88     }
    90     /**
    91      * {@inheritDoc}
    92      */
    93     public String getBugName() {
    94         return getClass().getName();
    95     }
    96 }

mercurial