TestBreakIterator.java revision 3233:b5d08bc0d224
1/*
2 * Copyright (c) 2002, 2015, 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 * @bug 4165985
27 * @summary Determine the end of the first sentence using BreakIterator.
28 * If the first sentence of "method" is parsed correctly, the test passes.
29 * Correct Answer: "This is a class (i.e. it is indeed a class)."
30 * Wrong Answer: "This is a class (i.e."
31 * @author jamieh
32 * @library ../lib
33 * @modules jdk.javadoc
34 * @build JavadocTester
35 * @run main TestBreakIterator
36 */
37
38public class TestBreakIterator extends JavadocTester {
39
40    public static void main(String... args) throws Exception {
41        TestBreakIterator tester = new TestBreakIterator();
42        tester.runTests();
43    }
44
45    @Test
46    void test() {
47        javadoc("-d", "out",
48                "-sourcepath", testSrc,
49                "-breakiterator",
50                "pkg");
51        checkExit(Exit.OK);
52
53        checkOutput("pkg/BreakIteratorTest.html", true,
54            "<div class=\"block\">This is a class (i.e. it is indeed a class).</div>");
55
56        checkOutput("pkg/BreakIteratorTest.html", true,
57                "<div class=\"block\">tests the breakiterator (i.e. how the firstSentence is broken up).</div>");
58
59        checkOutput("pkg/BreakIteratorTest.html", true,
60                "<div class=\"block\">with an inline tag <code>jdk.javadoc.taglet.Taglet</code> does it work.</div>");
61
62        checkOutput("pkg/BreakIteratorTest.html", true,
63                "<div class=\"block\">with a block tag</div>");
64
65        checkOutput("pkg/BreakIteratorTest.html", true,
66                "<div class=\"block\">Return methods to the specified\n" +
67                " <a href=\"../com/sun/javadoc/package-summary.html#included\">access\n" +
68                " modifier option</a>.</div>");
69
70        checkOutput("pkg/BreakIteratorTest.html", true,
71                "<div class=\"block\">A constant indicating that the keyLocation is indeterminate\n" +
72                " or not relevant.</div>");
73    }
74}
75