langtools/test/com/sun/javadoc/testBadSourceFile/TestBadSourceFile.java
changeset 24071 b0845717434e
parent 24065 fc4022e50129
child 24072 e7549dcbc4af
equal deleted inserted replaced
24070:3852ce6db3f4 24071:b0845717434e
    41     //Javadoc arguments.
    41     //Javadoc arguments.
    42     private static final String[] ARGS = new String[] {
    42     private static final String[] ARGS = new String[] {
    43         "-Xdoclint:none", "-d", BUG_ID, SRC_DIR + "/C2.java"
    43         "-Xdoclint:none", "-d", BUG_ID, SRC_DIR + "/C2.java"
    44     };
    44     };
    45 
    45 
    46     //Input for string search tests.
       
    47     private static final String[][] TEST = NO_TEST;
       
    48     private static final String[][] NEGATED_TEST = NO_TEST;
       
    49 
       
    50     /**
    46     /**
    51      * The entry point of the test.
    47      * The entry point of the test.
    52      * @param args the array of command line arguments.
    48      * @param args the array of command line arguments.
    53      */
    49      */
    54     public static void main(String[] args) {
    50     public static void main(String[] args) {
    55         TestBadSourceFile tester = new TestBadSourceFile();
    51         TestBadSourceFile tester = new TestBadSourceFile();
    56         int exitCode = tester.run(ARGS, TEST, NEGATED_TEST);
    52         int exitCode = tester.run(ARGS, NO_TEST, NO_TEST);
    57         tester.checkExitCode(0, exitCode);
    53         tester.checkExitCode(0, exitCode);
    58         tester.printSummary();
    54         tester.printSummary();
    59     }
    55     }
    60 
    56 
    61     /**
    57     /**