We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3628a45 commit 717cb53Copy full SHA for 717cb53
1 file changed
execute-around/src/test/java/com/iluwatar/AppTest.java
@@ -1,7 +1,10 @@
1
package com.iluwatar;
2
3
+import java.io.File;
4
import java.io.IOException;
5
6
+import org.junit.After;
7
+import org.junit.Before;
8
import org.junit.Test;
9
10
/**
@@ -16,4 +19,11 @@ public void test() throws IOException {
16
19
String[] args = {};
17
20
App.main(args);
18
21
}
22
+
23
+ @Before
24
+ @After
25
+ public void cleanup() {
26
+ File file = new File("testfile.txt");
27
+ file.delete();
28
+ }
29
0 commit comments