test/jdk/javadoc/doclet/testNotifications/TestNotifications.java

Print this page




  31  * @library ../lib
  32  * @modules jdk.javadoc
  33  * @build    JavadocTester
  34  * @run main TestNotifications
  35  */
  36 
  37 public class TestNotifications extends JavadocTester {
  38 
  39     public static void main(String... args) throws Exception {
  40         TestNotifications tester = new TestNotifications();
  41         tester.runTests();
  42     }
  43 
  44     @Test
  45     void test1() {
  46         String outDir = "out";
  47 
  48         // Notify that the destination directory must be created.
  49         javadoc("-d", outDir, "-sourcepath", testSrc, "pkg");
  50         checkExit(Exit.OK);
  51         checkOutput(Output.NOTICE, true,
  52                 "Creating destination directory: \"" + outDir);
  53 
  54         // No need to notify that the destination must be created because
  55         // it already exists.
  56         setOutputDirectoryCheck(DirectoryCheck.NONE);
  57         javadoc("-d", outDir, "-sourcepath", testSrc, "pkg");
  58         checkExit(Exit.OK);
  59         checkOutput(Output.NOTICE, false,
  60                 "Creating destination directory: \"" + outDir);
  61     }
  62 
  63     @Test
  64     void test() {
  65         //Make sure classname is not include in javadoc usage message.
  66         setOutputDirectoryCheck(DirectoryCheck.NO_HTML_FILES);
  67         javadoc("-help");
  68         checkOutput(Output.NOTICE, false,
  69                 "[classnames]");
  70     }
  71 }


  31  * @library ../lib
  32  * @modules jdk.javadoc
  33  * @build    JavadocTester
  34  * @run main TestNotifications
  35  */
  36 
  37 public class TestNotifications extends JavadocTester {
  38 
  39     public static void main(String... args) throws Exception {
  40         TestNotifications tester = new TestNotifications();
  41         tester.runTests();
  42     }
  43 
  44     @Test
  45     void test1() {
  46         String outDir = "out";
  47 
  48         // Notify that the destination directory must be created.
  49         javadoc("-d", outDir, "-sourcepath", testSrc, "pkg");
  50         checkExit(Exit.OK);
  51         checkOutput(Output.OUT, true,
  52                 "Creating destination directory: \"" + outDir);
  53 
  54         // No need to notify that the destination must be created because
  55         // it already exists.
  56         setOutputDirectoryCheck(DirectoryCheck.NONE);
  57         javadoc("-d", outDir, "-sourcepath", testSrc, "pkg");
  58         checkExit(Exit.OK);
  59         checkOutput(Output.OUT, false,
  60                 "Creating destination directory: \"" + outDir);
  61     }
  62 
  63     @Test
  64     void test() {
  65         //Make sure classname is not include in javadoc usage message.
  66         setOutputDirectoryCheck(DirectoryCheck.NO_HTML_FILES);
  67         javadoc("-help");
  68         checkOutput(Output.OUT, false,
  69                 "[classnames]");
  70     }
  71 }