203 |
203 |
204 @Test |
204 @Test |
205 void testModules(Path base, FrameKind fKind, OverviewKind oKind, HtmlKind hKind) throws IOException { |
205 void testModules(Path base, FrameKind fKind, OverviewKind oKind, HtmlKind hKind) throws IOException { |
206 javadoc(base, fKind, oKind, hKind, |
206 javadoc(base, fKind, oKind, hKind, |
207 "-modulesourcepath", gensrcModules.toString(), |
207 "-modulesourcepath", gensrcModules.toString(), |
208 "-addmods", "m1,m2,m3", // TEMPORARY, SHOULD NOT BE NECESSARY |
208 "--module", "m1,m2,m3"); |
209 "m1p1", "m1p2", "m1p3", |
|
210 "m2p1", "m2p2", "m2p3", |
|
211 "m3p1", "m3p2", "m3p3"); |
|
212 |
209 |
213 new Checker(fKind, oKind, hKind) |
210 new Checker(fKind, oKind, hKind) |
214 .classes("m1/m1p1.M1P1C1", "m1/m1p1.M1P1C2", "m1/m1p1.M1P1C3", |
211 .classes("m1/m1p1.M1P1C1", "m1/m1p1.M1P1C2", "m1/m1p1.M1P1C3", |
215 "m2/m2p1.M2P1C1", "m2/m2p1.M2P1C2", "m2/m2p1.M2P1C3", |
212 "m2/m2p1.M2P1C1", "m2/m2p1.M2P1C2", "m2/m2p1.M2P1C3", |
216 "m3/m3p1.M3P1C1", "m3/m3p1.M3P1C2", "m3/m3p1.M3P1C3") |
213 "m3/m3p1.M3P1C1", "m3/m3p1.M3P1C2", "m3/m3p1.M3P1C3") |