TestTagOutput.java revision 3294:9adfb22ff08f
1145519Sdarrenr/*
2145510Sdarrenr * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
3170268Sdarrenr * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4170268Sdarrenr *
5170268Sdarrenr * This code is free software; you can redistribute it and/or modify it
6170268Sdarrenr * under the terms of the GNU General Public License version 2 only, as
7170268Sdarrenr * published by the Free Software Foundation.
8170268Sdarrenr *
9170268Sdarrenr * This code is distributed in the hope that it will be useful, but WITHOUT
10170268Sdarrenr * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11145510Sdarrenr * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12145510Sdarrenr * version 2 for more details (a copy is included in the LICENSE file that
13145510Sdarrenr * accompanied this code).
14145510Sdarrenr *
15145510Sdarrenr * You should have received a copy of the GNU General Public License version
16145510Sdarrenr * 2 along with this work; if not, write to the Free Software Foundation,
17153881Sguido * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18145510Sdarrenr *
19145510Sdarrenr * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20170268Sdarrenr * or visit www.oracle.com if you need additional information or have any
21145510Sdarrenr * questions.
22145510Sdarrenr */
23
24/*
25 * @test
26 * @bug 8026370 8026567
27 * @summary This test checks the generated tag output.
28 * @author Bhavesh Patel
29 * @library ../lib
30 * @modules jdk.javadoc/jdk.javadoc.internal.tool
31 * @build JavadocTester
32 * @run main TestTagOutput
33 */
34
35public class TestTagOutput extends JavadocTester {
36
37    public static void main(String... args) throws Exception {
38        TestTagOutput tester = new TestTagOutput();
39        tester.runTests();
40    }
41
42    @Test
43    void test() {
44        javadoc("-d", "out",
45                "-sourcepath", testSrc,
46                "pkg1");
47        checkExit(Exit.OK);
48
49        checkOutput("pkg1/DeprecatedTag.html", true,
50            "<div class=\"block\"><span class=\"deprecatedLabel\">Deprecated.</span>&nbsp;</div>",
51            "<div class=\"block\"><span class=\"deprecatedLabel\">Deprecated.</span>&nbsp;" +
52            "<span class=\"deprecationComment\">Do not use this.</span></div>");
53
54        checkOutput("pkg1/DeprecatedTag.html", false,
55            "<div class=\"block\"><span class=\"deprecatedLabel\">Deprecated." +
56            "</span>&nbsp;<span class=\"deprecationComment\"></span></div>");
57    }
58}
59