SmartStepInto from kotlin to java functions

This commit is contained in:
Natalia Ukhorskaya
2014-04-28 10:19:26 +04:00
parent 5a2f1ca65f
commit 68c77e6384
8 changed files with 80 additions and 5 deletions
@@ -98,7 +98,7 @@ public class MockLibraryUtil {
//noinspection IOResourceOpenedButNotSafelyClosed
Enum<?> invocationResult = (Enum<?>) execMethod
.invoke(compilerObject, new PrintStream(outStream),
new String[] {"-src", sourcesPath, "-output", outDir.getAbsolutePath()});
new String[] {"-src", sourcesPath, "-output", outDir.getAbsolutePath(), "-classpath", sourcesPath});
assertEquals(new String(outStream.toByteArray()), ExitCode.OK.name(), invocationResult.name());
}