Search in sources :

Example 1 with AnonymousInNonStaticMethod

use of org.apache.flink.runtime.util.jartestprogram.AnonymousInNonStaticMethod in project flink by apache.

the class JarFileCreatorTest method TestAnonymousInnerClassTrick2.

//anonymous inner class in non static method accessing a local variable in its closure.
@Test
public void TestAnonymousInnerClassTrick2() throws Exception {
    File out = new File(System.getProperty("java.io.tmpdir"), "jarcreatortest.jar");
    JarFileCreator jfc = new JarFileCreator(out);
    jfc.addClass(AnonymousInNonStaticMethod.class).createJarFile();
    Set<String> ans = new HashSet<String>();
    ans.add("org/apache/flink/runtime/util/jartestprogram/AnonymousInNonStaticMethod$1.class");
    ans.add("org/apache/flink/runtime/util/jartestprogram/AnonymousInNonStaticMethod$A.class");
    ans.add("org/apache/flink/runtime/util/jartestprogram/AnonymousInNonStaticMethod.class");
    Assert.assertTrue("Jar file for Anonymous Inner Class is not correct", validate(ans, out));
    out.delete();
}
Also used : AnonymousInNonStaticMethod(org.apache.flink.runtime.util.jartestprogram.AnonymousInNonStaticMethod) File(java.io.File) HashSet(java.util.HashSet) Test(org.junit.Test)

Aggregations

File (java.io.File)1 HashSet (java.util.HashSet)1 AnonymousInNonStaticMethod (org.apache.flink.runtime.util.jartestprogram.AnonymousInNonStaticMethod)1 Test (org.junit.Test)1