System Properties

""", """
System Properties Summary
"""); } /* * If there are no system properties, then there has to be * no System Properties page and no mentions thereof. */ @Test public void testNoProperties(Path base) throws Exception { Path outDir = base.resolve("out2"); Path srcDir = Path.of(testSrc).resolve("src2"); javadoc("-d", outDir.toString(), "--source-path", srcDir.toString(), "pkg1"); checkExit(Exit.OK); checkFiles(false, "system-properties.html"); // Should be conditional on presence of the index file(s) checkOutput("index-all.html", false, """ """); checkOutput("index-all.html", false, "System Properties"); } }