Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/langtools/jdk/javadoc/doclet/testBreakIterator/TestBreakIterator.java
40971 views
1
/*
2
* Copyright (c) 2002, 2019, 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
* @library ../../lib
32
* @modules jdk.javadoc/jdk.javadoc.internal.tool
33
* @build javadoc.tester.*
34
* @run main TestBreakIterator
35
*/
36
37
import javadoc.tester.JavadocTester;
38
39
public class TestBreakIterator extends JavadocTester {
40
41
public static void main(String... args) throws Exception {
42
TestBreakIterator tester = new TestBreakIterator();
43
tester.runTests();
44
}
45
46
@Test
47
public void test() {
48
javadoc("-d", "out",
49
"-sourcepath", testSrc,
50
"-breakiterator",
51
"pkg");
52
checkExit(Exit.OK);
53
54
checkOutput("pkg/BreakIteratorTest.html", true,
55
"""
56
<div class="block">This is a class (i.e. it is indeed a class).</div>""");
57
58
checkOutput("pkg/BreakIteratorTest.html", true,
59
"""
60
<div class="block">tests the breakiterator (i.e. how the firstSentence is broken up).</div>""");
61
62
checkOutput("pkg/BreakIteratorTest.html", true,
63
"""
64
<div class="block">with an inline tag <code>jdk.javadoc.taglet.Taglet</code> does it work.</div>""");
65
66
checkOutput("pkg/BreakIteratorTest.html", true,
67
"""
68
<div class="block">with a block tag</div>""");
69
70
checkOutput("pkg/BreakIteratorTest.html", true,
71
"""
72
<div class="block">with an anchor for the
73
<a href="../index-all.html">top level index</a>.</div>""");
74
75
checkOutput("pkg/BreakIteratorTest.html", true,
76
"""
77
<div class="block">A constant indicating that the keyLocation is indeterminate
78
or not relevant.</div>""");
79
}
80
}
81
82