Switch class loading logic in blackBoxWithJava tests

BoxWithJava tests now by default are loaded with the classloader which has
test's classpath in itself, as in the former ClassPathInTheSameClassLoaderTest
This commit is contained in:
Alexander Udalov
2013-02-08 17:51:29 +04:00
committed by Alexander Udalov
parent 22bf8b25b8
commit b485c7ae26
49 changed files with 203 additions and 238 deletions

View File

@@ -0,0 +1,11 @@
package protectedPack;
import java.lang.String;
public class protectedStaticClass {
protected static class Inner {
public String foo() {
return "OK";
}
}
}