test/com/sun/javadoc/testAnnotationTypes/TestAnnotationTypes.java

Print this page
rev 2315 : 8031670: Remove unneeded -source options in javadoc tests


  22  */
  23 
  24 /*
  25  * @test
  26  * @bug      4973609 8015249 8025633 8026567
  27  * @summary  Make sure that annotation types with 0 members does not have
  28  *           extra HR tags.
  29  * @author   jamieh
  30  * @library  ../lib/
  31  * @build    JavadocTester TestAnnotationTypes
  32  * @run main TestAnnotationTypes
  33  */
  34 
  35 public class TestAnnotationTypes extends JavadocTester {
  36 
  37     //Test information.
  38     private static final String BUG_ID = "4973609-8015249";
  39 
  40     //Javadoc arguments.
  41     private static final String[] ARGS = new String[] {
  42         "-d", BUG_ID, "-sourcepath", SRC_DIR, "-source", "1.5", "pkg"
  43     };
  44 
  45     //Input for string search tests.
  46     private static final String[][] TEST = {
  47         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  48             "<li>Summary:&nbsp;</li>" + NL + "<li><a href=\"#annotation.type." +
  49             "field.summary\">Field</a>&nbsp;|&nbsp;</li>"},
  50         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  51             "<li>Detail:&nbsp;</li>" + NL + "<li><a href=\"#annotation.type." +
  52             "field.detail\">Field</a>&nbsp;|&nbsp;</li>"},
  53         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  54             "<!-- =========== ANNOTATION TYPE FIELD SUMMARY =========== -->"},
  55         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  56             "<h3>Field Summary</h3>"},
  57         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  58             "<td class=\"colLast\"><code><span class=\"memberNameLink\"><a href=\"../" +
  59             "pkg/AnnotationTypeField.html#DEFAULT_NAME\">DEFAULT_NAME</a></span>" +
  60             "</code>&nbsp;</td>"},
  61         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  62             "<!-- ============ ANNOTATION TYPE FIELD DETAIL =========== -->"},
  63         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  64             "<h4>DEFAULT_NAME</h4>" + NL + "<pre>public static final&nbsp;java." +
  65             "lang.String&nbsp;DEFAULT_NAME</pre>"},
  66         {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
  67             "<li>Summary:&nbsp;</li>" + NL + "<li>Field&nbsp;|&nbsp;</li>"},
  68         {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
  69             "<li>Detail:&nbsp;</li>" + NL + "<li>Field&nbsp;|&nbsp;</li>"},
  70     };
  71     private static final String[][] NEGATED_TEST = {
  72         {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
  73             "<HR>" + NL + NL + "<P>" + NL + NL + "<P>" +
  74             "<!-- ========= END OF CLASS DATA ========= -->" + "<HR>"}
  75     };
  76 
  77     /**
  78      * The entry point of the test.




  22  */
  23 
  24 /*
  25  * @test
  26  * @bug      4973609 8015249 8025633 8026567
  27  * @summary  Make sure that annotation types with 0 members does not have
  28  *           extra HR tags.
  29  * @author   jamieh
  30  * @library  ../lib/
  31  * @build    JavadocTester TestAnnotationTypes
  32  * @run main TestAnnotationTypes
  33  */
  34 
  35 public class TestAnnotationTypes extends JavadocTester {
  36 
  37     //Test information.
  38     private static final String BUG_ID = "4973609-8015249";
  39 
  40     //Javadoc arguments.
  41     private static final String[] ARGS = new String[] {
  42         "-d", BUG_ID, "-sourcepath", SRC_DIR, "pkg"
  43     };
  44 
  45     //Input for string search tests.
  46     private static final String[][] TEST = {
  47         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  48             "<li>Summary:&nbsp;</li>" + NL + "<li><a href=\"#annotation.type." +
  49             "field.summary\">Field</a>&nbsp;|&nbsp;</li>"},
  50         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  51             "<li>Detail:&nbsp;</li>" + NL + "<li><a href=\"#annotation.type." +
  52             "field.detail\">Field</a>&nbsp;|&nbsp;</li>"},
  53         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  54             "<!-- =========== ANNOTATION TYPE FIELD SUMMARY =========== -->"},
  55         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  56             "<h3>Field Summary</h3>"},
  57         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  58             "<td class=\"colLast\"><code><span class=\"memberNameLink\"><a href=\"../" +
  59             "pkg/AnnotationTypeField.html#DEFAULT_NAME\">DEFAULT_NAME</a></span>" +
  60             "</code>&nbsp;</td>"},
  61         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  62             "<!-- ============ ANNOTATION TYPE FIELD DETAIL =========== -->"},
  63         {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html",
  64             "<h4>DEFAULT_NAME</h4>" + NL + "<pre>public static final&nbsp;java." +
  65             "lang.String&nbsp;DEFAULT_NAME</pre>"},
  66         {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
  67             "<li>Summary:&nbsp;</li>" + NL + "<li>Field&nbsp;|&nbsp;</li>"},
  68         {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
  69             "<li>Detail:&nbsp;</li>" + NL + "<li>Field&nbsp;|&nbsp;</li>"},
  70     };
  71     private static final String[][] NEGATED_TEST = {
  72         {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
  73             "<HR>" + NL + NL + "<P>" + NL + NL + "<P>" +
  74             "<!-- ========= END OF CLASS DATA ========= -->" + "<HR>"}
  75     };
  76 
  77     /**
  78      * The entry point of the test.