mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 11:23:58 +00:00
Merge pull request #1633 from wing328/fix_window_test_case
Add exception handling in the test case (for Windows)
This commit is contained in:
commit
d7460dac32
@ -109,7 +109,12 @@ public class OnlineGeneratorOptionsTest {
|
||||
outputFilename = Generator.generateClient(provider.getLanguage(), input);
|
||||
}
|
||||
final File dir = new File(new File(outputFilename).getParent());
|
||||
|
||||
try {
|
||||
FileUtils.deleteDirectory(dir);
|
||||
} catch (Exception e) { // directory can't be deleted for some reasons
|
||||
e.printStackTrace();
|
||||
}
|
||||
for (InvocationCounter option : options.values()) {
|
||||
assertNotEquals(option.getCounter(), 0, String.format("Option \"%s\" wasn't processed.",
|
||||
option.getValue()));
|
||||
|
Loading…
Reference in New Issue
Block a user