test/langtools/jdk/javadoc/doclet/testSeeTag/TestSeeTag.java
changeset 53097 2e82ca64b25d
parent 52871 c09bff7928e8
child 53562 0d9dee001667
--- a/test/langtools/jdk/javadoc/doclet/testSeeTag/TestSeeTag.java	Fri Dec 21 16:56:40 2018 +0100
+++ b/test/langtools/jdk/javadoc/doclet/testSeeTag/TestSeeTag.java	Fri Dec 21 10:38:33 2018 -0800
@@ -26,12 +26,14 @@
  * @bug      8017191 8182765 8200432
  * @summary  Javadoc is confused by at-link to imported classes outside of the set of generated packages
  * @author   jjg
- * @library  ../lib
+ * @library  ../../lib
  * @modules jdk.javadoc/jdk.javadoc.internal.tool
- * @build    JavadocTester
+ * @build    javadoc.tester.*
  * @run main TestSeeTag
  */
 
+import javadoc.tester.JavadocTester;
+
 public class TestSeeTag extends JavadocTester {
 
     public static void main(String... args) throws Exception {
@@ -40,7 +42,7 @@
     }
 
     @Test
-    void test() {
+    public void test() {
         javadoc("-d", "out",
                 "-sourcepath", testSrc,
                 "pkg");
@@ -67,7 +69,7 @@
     }
 
     @Test
-    void test_html4() {
+    public void test_html4() {
         javadoc("-d", "out-html4",
                 "-html4",
                 "-sourcepath", testSrc,
@@ -86,7 +88,7 @@
     }
 
     @Test
-    void testBadReference() {
+    public void testBadReference() {
         javadoc("-d", "out-badref",
                 "-sourcepath", testSrc,
                 "badref");