Skip to content

Commit 7e1408b

Browse files
committed
Remove System.out in a test (clean build logging)
1 parent 9a9532b commit 7e1408b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

junit5/junit5-extension/src/test/java/org/quickperf/junit5/JUnit5ExtensionTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ public void a_failing_test() {
9494
public static class TestWithBeforeEachAndAfterEach {
9595
@BeforeEach
9696
void createLockFile() throws IOException {
97-
System.out.println("Creating the file");
9897
File file = new File("lock");
9998
if(!file.createNewFile()){
10099
throw new RuntimeException("Unable to create lock file");
@@ -112,7 +111,6 @@ void checkLockFile() {
112111

113112
@AfterEach
114113
void deleteLockFile() {
115-
System.out.println("Deleting the file");
116114
File file = new File("lock");
117115
if(!file.delete()){
118116
throw new RuntimeException("Unable to delete lock file");

0 commit comments

Comments
 (0)