equal
deleted
inserted
replaced
44 |
44 |
45 //Input for string search tests. |
45 //Input for string search tests. |
46 private static final String[][] TEST = { |
46 private static final String[][] TEST = { |
47 {BUG_ID + "/pkg/MyClass.MyInterface.html", "Enclosing class:"} |
47 {BUG_ID + "/pkg/MyClass.MyInterface.html", "Enclosing class:"} |
48 }; |
48 }; |
49 private static final String[][] NEGATED_TEST = NO_TEST; |
|
50 |
49 |
51 /** |
50 /** |
52 * The entry point of the test. |
51 * The entry point of the test. |
53 * @param args the array of command line arguments. |
52 * @param args the array of command line arguments. |
54 */ |
53 */ |
55 public static void main(String[] args) { |
54 public static void main(String[] args) { |
56 TestEnclosingClass tester = new TestEnclosingClass(); |
55 TestEnclosingClass tester = new TestEnclosingClass(); |
57 tester.run(ARGS, TEST, NEGATED_TEST); |
56 tester.run(ARGS, TEST, NO_TEST); |
58 tester.printSummary(); |
57 tester.printSummary(); |
59 } |
58 } |
60 |
59 |
61 /** |
60 /** |
62 * {@inheritDoc} |
61 * {@inheritDoc} |