langtools/test/com/sun/javadoc/testHtmlComments/TestHtmlComments.java
changeset 24071 b0845717434e
parent 24065 fc4022e50129
child 24072 e7549dcbc4af
equal deleted inserted replaced
24070:3852ce6db3f4 24071:b0845717434e
    42     private static final String[] ARGS = new String[] {
    42     private static final String[] ARGS = new String[] {
    43         "-d", BUG_ID, "-sourcepath", SRC_DIR, SRC_DIR + "/C.java"
    43         "-d", BUG_ID, "-sourcepath", SRC_DIR, SRC_DIR + "/C.java"
    44     };
    44     };
    45 
    45 
    46     //Input for string search tests.
    46     //Input for string search tests.
    47     private static final String[][] TEST = NO_TEST;
       
    48     private static final String[][] NEGATED_TEST = {
    47     private static final String[][] NEGATED_TEST = {
    49         {BUG_ID + "/C.html",
    48         {BUG_ID + "/C.html",
    50             "<!-- ============ FIELD DETAIL =========== -->"}
    49             "<!-- ============ FIELD DETAIL =========== -->"}
    51     };
    50     };
    52 
    51 
    54      * The entry point of the test.
    53      * The entry point of the test.
    55      * @param args the array of command line arguments.
    54      * @param args the array of command line arguments.
    56      */
    55      */
    57     public static void main(String[] args) {
    56     public static void main(String[] args) {
    58         TestHtmlComments tester = new TestHtmlComments();
    57         TestHtmlComments tester = new TestHtmlComments();
    59         tester.run(ARGS, TEST, NEGATED_TEST);
    58         tester.run(ARGS, NO_TEST, NEGATED_TEST);
    60         tester.printSummary();
    59         tester.printSummary();
    61     }
    60     }
    62 
    61 
    63     /**
    62     /**
    64      * {@inheritDoc}
    63      * {@inheritDoc}