File tree 1 file changed +4
-3
lines changed
src/test/java/org/flightgear/terramaster
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
package org .flightgear .terramaster ;
2
2
3
+ import java .io .IOException ;
3
4
import static org .junit .Assert .assertNotEquals ;
4
5
import static org .junit .Assert .assertNotNull ;
5
6
@@ -23,13 +24,13 @@ public void before() throws MalformedURLException {
23
24
}
24
25
25
26
@ Test
26
- public void testApacheDirectoryParser () throws MalformedURLException {
27
- String [] result = ApacheDirectoryParser .listDirectories (rootURL );
27
+ public void testApacheDirectoryParser () throws MalformedURLException , IOException {
28
+ String [] result = ApacheDirectoryParser .listDirectories (rootURL );
28
29
assertNotEquals (0 , result .length );
29
30
}
30
31
31
32
@ Test
32
- public void testApacheDirectoryParserRoot () throws MalformedURLException {
33
+ public void testApacheDirectoryParserRoot () throws MalformedURLException , IOException {
33
34
String [] result = ApacheDirectoryParser .listDirectories (rootURL );
34
35
assertNotEquals (0 , result .length );
35
36
for (String string : result ) {
You can’t perform that action at this time.
0 commit comments