We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a9532b commit 7e1408bCopy full SHA for 7e1408b
junit5/junit5-extension/src/test/java/org/quickperf/junit5/JUnit5ExtensionTest.java
@@ -94,7 +94,6 @@ public void a_failing_test() {
94
public static class TestWithBeforeEachAndAfterEach {
95
@BeforeEach
96
void createLockFile() throws IOException {
97
- System.out.println("Creating the file");
98
File file = new File("lock");
99
if(!file.createNewFile()){
100
throw new RuntimeException("Unable to create lock file");
@@ -112,7 +111,6 @@ void checkLockFile() {
112
111
113
@AfterEach
114
void deleteLockFile() {
115
- System.out.println("Deleting the file");
116
117
if(!file.delete()){
118
throw new RuntimeException("Unable to delete lock file");
0 commit comments