author | jjg |
Fri, 18 Apr 2014 17:25:43 -0700 | |
changeset 24065 | fc4022e50129 |
parent 23971 | f5ff1f5a8dee |
child 24072 | e7549dcbc4af |
permissions | -rw-r--r-- |
10 | 1 |
/* |
23971 | 2 |
* Copyright (c) 2002, 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 4074234 |
|
27 |
* @summary Make Javadoc capable of traversing/recursing all of given subpackages. |
|
28 |
* @author jamieh |
|
29 |
* @library ../lib/ |
|
30 |
* @build JavadocTester |
|
31 |
* @build TestRecurseSubPackages |
|
32 |
* @run main TestRecurseSubPackages |
|
33 |
*/ |
|
34 |
||
35 |
public class TestRecurseSubPackages extends JavadocTester { |
|
36 |
||
37 |
private static final String BUG_ID = "4074234"; |
|
38 |
private static final String[] ARGS = |
|
39 |
new String[] { |
|
40 |
"-d", BUG_ID, "-sourcepath", SRC_DIR, |
|
41 |
"-subpackages", "pkg1", "-exclude", "pkg1.pkg2.packageToExclude" |
|
42 |
}; |
|
43 |
||
44 |
/** |
|
45 |
* The entry point of the test. |
|
46 |
* @param args the array of command line arguments. |
|
47 |
*/ |
|
48 |
public static void main(String[] args) { |
|
49 |
String[][] tests = new String[6][2]; |
|
50 |
for (int i = 0; i < tests.length; i++) { |
|
23971 | 51 |
tests[i][0] = BUG_ID + "/allclasses-frame.html"; |
10 | 52 |
tests[i][1] = "C" + (i+1) + ".html"; |
53 |
} |
|
54 |
String[][] negatedTests = new String[][] { |
|
23971 | 55 |
{BUG_ID + "/allclasses-frame.html", "DummyClass.html"} |
10 | 56 |
}; |
57 |
TestRecurseSubPackages tester = new TestRecurseSubPackages(); |
|
24065
fc4022e50129
8041150: Avoid silly use of static methods in JavadocTester
jjg
parents:
23971
diff
changeset
|
58 |
tester.run(ARGS, tests, negatedTests); |
10 | 59 |
tester.printSummary(); |
60 |
} |
|
61 |
||
62 |
/** |
|
63 |
* {@inheritDoc} |
|
64 |
*/ |
|
65 |
public String getBugId() { |
|
66 |
return BUG_ID; |
|
67 |
} |
|
68 |
||
69 |
/** |
|
70 |
* {@inheritDoc} |
|
71 |
*/ |
|
72 |
public String getBugName() { |
|
73 |
return getClass().getName(); |
|
74 |
} |
|
75 |
} |