Merge branch '2.2.x' into 2.3.x

This commit is contained in:
Phillip Webb 2020-08-19 10:22:45 -07:00
commit 0dd38a7264
1 changed files with 7 additions and 1 deletions

View File

@ -30,6 +30,7 @@ import java.util.jar.JarOutputStream;
import java.util.jar.Manifest;
import java.util.zip.ZipEntry;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
@ -51,11 +52,16 @@ class JarFileWrapperTests {
private JarFileWrapper wrapper;
@BeforeEach
void setup(@TempDir File temp) throws IOException {
void setup(@TempDir File temp) throws Exception {
this.parent = new SpyJarFile(createTempJar(temp));
this.wrapper = new JarFileWrapper(this.parent);
}
@AfterEach
void cleanup() throws Exception {
this.parent.close();
}
private File createTempJar(File temp) throws IOException {
File file = new File(temp, "temp.jar");
new JarOutputStream(new FileOutputStream(file)).close();