author | jjg |
Tue, 22 Apr 2014 17:57:40 -0700 | |
changeset 24072 | e7549dcbc4af |
parent 24065 | fc4022e50129 |
child 24217 | 25b12d4d4192 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
5520
diff
changeset
|
2 |
* Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. |
10 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5520 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
10 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 4657239 4775743 |
|
27 |
* @summary Make sure a notification is printed when an output directory must |
|
28 |
* be created. |
|
29 |
* Make sure classname is not include in javadoc usage message. |
|
30 |
* @author jamieh |
|
31 |
* @library ../lib/ |
|
32 |
* @build JavadocTester |
|
33 |
* @build TestNotifications |
|
34 |
* @run main TestNotifications |
|
35 |
*/ |
|
36 |
||
37 |
public class TestNotifications extends JavadocTester { |
|
38 |
||
39 |
//Javadoc arguments. |
|
40 |
private static final String[] ARGS = new String[] { |
|
24072 | 41 |
"-d", OUTPUT_DIR, "-sourcepath", SRC_DIR, "pkg" |
10 | 42 |
}; |
43 |
||
44 |
private static final String[] ARGS2 = new String[] { |
|
45 |
"-help" |
|
46 |
}; |
|
47 |
||
48 |
//Input for string search tests. |
|
49 |
private static final String[][] TEST = { |
|
24072 | 50 |
{NOTICE_OUTPUT, "Creating destination directory: \"" + OUTPUT_DIR} |
10 | 51 |
}; |
52 |
private static final String[][] NEGATED_TEST = { |
|
24072 | 53 |
{NOTICE_OUTPUT, "Creating destination directory: \"" + OUTPUT_DIR} |
10 | 54 |
}; |
55 |
||
56 |
private static final String[][] NEGATED_TEST2 = { |
|
57 |
{NOTICE_OUTPUT, "[classnames]"} |
|
58 |
}; |
|
59 |
||
60 |
/** |
|
61 |
* The entry point of the test. |
|
62 |
* @param args the array of command line arguments. |
|
63 |
*/ |
|
64 |
public static void main(String[] args) { |
|
65 |
TestNotifications tester = new TestNotifications(); |
|
66 |
// Notify that the destination directory must be created. |
|
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
5520
diff
changeset
|
67 |
tester.run(ARGS, TEST, NO_TEST); |
10 | 68 |
// No need to notify that the destination must be created because |
69 |
// it already exists. |
|
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
5520
diff
changeset
|
70 |
tester.run(ARGS, NO_TEST, NEGATED_TEST); |
10 | 71 |
//Make sure classname is not include in javadoc usage message. |
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
5520
diff
changeset
|
72 |
tester.run(ARGS2, NO_TEST, NEGATED_TEST2); |
10 | 73 |
tester.printSummary(); |
74 |
} |
|
75 |
} |