Merge pull request #9863 from JonCook/master
BAEL-4341 - JUnit test for System.out.println()
This commit is contained in:
commit
7c35d2a54f
|
@ -4,6 +4,7 @@ import java.io.ByteArrayOutputStream;
|
|||
import java.io.PrintStream;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.jupiter.api.AfterEach;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
|
@ -19,7 +20,7 @@ class SystemOutPrintlnUnitTest {
|
|||
System.setOut(new PrintStream(outputStreamCaptor));
|
||||
}
|
||||
|
||||
@BeforeEach
|
||||
@AfterEach
|
||||
public void tearDown() {
|
||||
System.setOut(standardOut);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue