< prev index next >

test/langtools/jdk/javadoc/doclet/testModules/TestModulePackages.java

Print this page

        

*** 68,78 **** "-noindex", "--module-source-path", src.toString(), "--module", "m"); checkExit(Exit.OK); ! checkOutput("m-summary.html", false, "<h3>Packages</h3>\n" + "<table class=\"packagesSummary\" summary=\"Packages table, " + "listing packages, and an explanation\">"); } --- 68,78 ---- "-noindex", "--module-source-path", src.toString(), "--module", "m"); checkExit(Exit.OK); ! checkOutput("m/module-summary.html", false, "<h3>Packages</h3>\n" + "<table class=\"packagesSummary\" summary=\"Packages table, " + "listing packages, and an explanation\">"); }
*** 157,167 **** checkExit(Exit.OK); checkCaption("m", TabKind.EXPORTS); checkTableHead("m", ColKind.EXPORTED_TO); checkPackageRow("m", "p", "i0", "All Modules", null, "&nbsp;"); checkPackageRow("m", "q", "i1", ! "<a href=\"other-summary.html\">other</a>", null, "&nbsp;"); } @Test public void exportWithConcealed(Path base) throws Exception { Path src = base.resolve("src"); --- 157,167 ---- checkExit(Exit.OK); checkCaption("m", TabKind.EXPORTS); checkTableHead("m", ColKind.EXPORTED_TO); checkPackageRow("m", "p", "i0", "All Modules", null, "&nbsp;"); checkPackageRow("m", "q", "i1", ! "<a href=\"../other/module-summary.html\">other</a>", null, "&nbsp;"); } @Test public void exportWithConcealed(Path base) throws Exception { Path src = base.resolve("src");
*** 245,259 **** checkCaption("m", TabKind.EXPORTS, TabKind.OPENS, TabKind.CONCEALED); checkTableHead("m", ColKind.EXPORTED_TO, ColKind.OPENED_TO); checkPackageRow("m", "c", "i0", "None", "None", "&nbsp;"); checkPackageRow("m", "e.all", "i1", "All Modules", "None", "&nbsp;"); checkPackageRow("m", "e.other", "i2", ! "<a href=\"other-summary.html\">other</a>", "None", "&nbsp;"); checkPackageRow("m", "eo", "i3", "All Modules", "All Modules", "&nbsp;"); checkPackageRow("m", "o.all", "i4", "None", "All Modules", "&nbsp;"); checkPackageRow("m", "o.other", "i5", "None", ! "<a href=\"other-summary.html\">other</a>", "&nbsp;"); } @Test public void openModule(Path base) throws Exception { Path src = base.resolve("src"); --- 245,259 ---- checkCaption("m", TabKind.EXPORTS, TabKind.OPENS, TabKind.CONCEALED); checkTableHead("m", ColKind.EXPORTED_TO, ColKind.OPENED_TO); checkPackageRow("m", "c", "i0", "None", "None", "&nbsp;"); checkPackageRow("m", "e.all", "i1", "All Modules", "None", "&nbsp;"); checkPackageRow("m", "e.other", "i2", ! "<a href=\"../other/module-summary.html\">other</a>", "None", "&nbsp;"); checkPackageRow("m", "eo", "i3", "All Modules", "All Modules", "&nbsp;"); checkPackageRow("m", "o.all", "i4", "None", "All Modules", "&nbsp;"); checkPackageRow("m", "o.other", "i5", "None", ! "<a href=\"../other/module-summary.html\">other</a>", "&nbsp;"); } @Test public void openModule(Path base) throws Exception { Path src = base.resolve("src");
*** 365,375 **** checkExit(Exit.OK); checkCaption("m", TabKind.OPENS); checkTableHead("m", ColKind.OPENED_TO); checkPackageRow("m", "p", "i0", null, "All Modules", "&nbsp;"); checkPackageRow("m", "q", "i1", null, ! "<a href=\"other-summary.html\">other</a>", "&nbsp;"); } @Test public void openWithConcealed(Path base) throws Exception { Path src = base.resolve("src"); --- 365,375 ---- checkExit(Exit.OK); checkCaption("m", TabKind.OPENS); checkTableHead("m", ColKind.OPENED_TO); checkPackageRow("m", "p", "i0", null, "All Modules", "&nbsp;"); checkPackageRow("m", "q", "i1", null, ! "<a href=\"../other/module-summary.html\">other</a>", "&nbsp;"); } @Test public void openWithConcealed(Path base) throws Exception { Path src = base.resolve("src");
*** 441,451 **** + "<span>" + name + "</span>" + "<span class=\"tabEnd\">&nbsp;</span>" + "</caption>"; } ! checkOutput(moduleName + "-summary.html", true, expect); } private void checkTableHead(String moduleName, ColKind... kinds) { Set<ColKind> kindSet = Set.of(kinds); --- 441,451 ---- + "<span>" + name + "</span>" + "<span class=\"tabEnd\">&nbsp;</span>" + "</caption>"; } ! checkOutput(moduleName + "/module-summary.html", true, expect); } private void checkTableHead(String moduleName, ColKind... kinds) { Set<ColKind> kindSet = Set.of(kinds);
*** 459,469 **** sb.append("<th class=\"colSecond\" scope=\"col\">Opened To Modules</th>\n"); } sb.append("<th class=\"colLast\" scope=\"col\">Description</th>\n" + "</tr>"); ! checkOutput(moduleName + "-summary.html", true, sb.toString()); } private void checkPackageRow(String moduleName, String packageName, String id, String exportedTo, String openedTo, String desc) { StringBuilder sb = new StringBuilder(); --- 459,469 ---- sb.append("<th class=\"colSecond\" scope=\"col\">Opened To Modules</th>\n"); } sb.append("<th class=\"colLast\" scope=\"col\">Description</th>\n" + "</tr>"); ! checkOutput(moduleName + "/module-summary.html", true, sb.toString()); } private void checkPackageRow(String moduleName, String packageName, String id, String exportedTo, String openedTo, String desc) { StringBuilder sb = new StringBuilder();
*** 479,488 **** if (openedTo != null) { sb.append("<td class=\"colSecond\">" + openedTo + "</td>\n"); } sb.append("<td class=\"colLast\">" + desc + "</td>"); ! checkOutput(moduleName + "-summary.html", true, sb.toString()); } } --- 479,488 ---- if (openedTo != null) { sb.append("<td class=\"colSecond\">" + openedTo + "</td>\n"); } sb.append("<td class=\"colLast\">" + desc + "</td>"); ! checkOutput(moduleName + "/module-summary.html", true, sb.toString()); } }
< prev index next >