BAEL-4341 - Add AfterEach annotation instead of BeforeEach on tearDown

method
This commit is contained in:
Jonathan Cook
2020-08-13 09:12:53 +02:00
parent 2d29ebd764
commit b34af1db74

View File

@@ -4,6 +4,7 @@ import java.io.ByteArrayOutputStream;
import java.io.PrintStream; import java.io.PrintStream;
import org.junit.Assert; import org.junit.Assert;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
@@ -19,7 +20,7 @@ class SystemOutPrintlnUnitTest {
System.setOut(new PrintStream(outputStreamCaptor)); System.setOut(new PrintStream(outputStreamCaptor));
} }
@BeforeEach @AfterEach
public void tearDown() { public void tearDown() {
System.setOut(standardOut); System.setOut(standardOut);
} }