1/*
2 * Copyright (c) 2014, 2016, 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 */
23
24/*
25 * @test
26 * @summary Ensure the modifiers are correct
27 * @library ../lib
28 * @modules jdk.javadoc/jdk.javadoc.internal.tool
29 * @build JavadocTester
30 * @run main TestModifierEx
31 */
32
33public class TestModifierEx extends JavadocTester {
34
35    public static void main(String... args) throws Exception {
36        TestModifierEx tester = new TestModifierEx();
37        tester.runTests();
38    }
39
40    @Test
41    void test1(){
42        javadoc("-d", "out-1",
43                "-sourcepath", testSrc,
44                "-package", "pkg1");
45        checkExit(Exit.OK);
46        checkOutput("pkg1/Abstract.html", true,
47                "<pre>public abstract class <span class=\"typeNameLabel\">Abstract</span>");
48        checkOutput("pkg1/Interface.html", true,
49                "<pre>interface <span class=\"typeNameLabel\">Interface</span></pre>");
50        checkOutput("pkg1/Interface.Kind.html", true,
51                "<pre>public static interface <span class=\"typeNameLabel\">Interface.Kind</span></pre>");
52        checkOutput("pkg1/Enum.html", true,
53                "<pre>public enum <span class=\"typeNameLabel\">Enum</span>");
54        checkOutput("pkg1/Klass.StaticEnum.html", true,
55                "<pre>public static enum <span class=\"typeNameLabel\">Klass.StaticEnum</span>");
56    }
57
58}
59