diff --git a/src/test/java/com/mysema/codegen/SimpleCompilerTest.java b/src/test/java/com/mysema/codegen/SimpleCompilerTest.java index 6fd3a3e22..4792c0fdd 100644 --- a/src/test/java/com/mysema/codegen/SimpleCompilerTest.java +++ b/src/test/java/com/mysema/codegen/SimpleCompilerTest.java @@ -8,9 +8,15 @@ import javax.tools.JavaCompiler; import junit.framework.Assert; +import org.junit.After; import org.junit.Test; public class SimpleCompilerTest { + + @After + public void tearDown(){ + new File("src/test/java/com/mysema/codegen/SimpleCompilerTest.class").delete(); + } @Test public void testRun() {