Test Feature
Returns the value of the i
record component.
""");
// 8325325: Breadcrumb navigation links should not contain PREVIEW link
checkOutput("java.base/preview/package-summary.html", true,
"""
- java.base
- preview
""");
checkOutput("java.base/preview/Core.html", true,
"""
- java.base
- preview
- Core
""",
"""
""",
"""
CoreRecord
<\
/a>PREVIEW
core record""");
// 8331947: Support preview features without JEP should not be included in Preview API page
checkOutput("preview-list.html", false, "supportMethod");
}
@Test
public void test8277300() {
javadoc("-d", "out-8277300",
"--add-exports", "java.base/jdk.internal.javac=api2",
"--source-path", Paths.get(testSrc, "api2").toAbsolutePath().toString(),
"--show-packages=all",
"api2/api");
checkExit(Exit.OK);
checkOutput("api2/api/API.html", true,
"
test()
",
"
testNoPreviewInSig()
",
"title=\"class or interface in java.util\" class=\"external-link\">List<
APIPREVIEW>");
checkOutput("api2/api/API2.html", true,
"
API.test()
PREVIEW",
"
API.testNoPreviewInSig()
PREVIEW",
"
API3.test()
PREVIEW");
checkOutput("api2/api/API3.html", true,
"
test()
<"
+ "a href=\"#preview-test()\">PREVIEW");
}
@Test
public void test8282452() {
javadoc("-d", "out-8282452",
"--patch-module", "java.base=" + Paths.get(testSrc, "api").toAbsolutePath().toString(),
"--add-exports", "java.base/preview=m",
"--source-path", Paths.get(testSrc, "api").toAbsolutePath().toString(),
"--show-packages=all",
"preview");
checkExit(Exit.OK);
checkOutput("java.base/preview/NoPreview.html", false,
"refers to one or more preview");
}
@Test
public void testRequiresTransitiveJavaBase() {
Path src = Paths.get(testSrc, "requiresTransitiveJavaBase");
javadoc("-d", "out-requires-transitive-java-base",
"-XDforcePreview", "--enable-preview", "-source", System.getProperty("java.specification.version"),
"--module-source-path", src.toString(),
"--module", "m",
"--expand-requires", "transitive");
checkExit(Exit.OK);
checkOutput("m/module-summary.html", true,
"Indirect exports from the
java.base
module are");
}
}