Merge remote-tracking branch 'upstream/master' into JAVA-3570

This commit is contained in:
Krzysztof Woyke
2020-12-29 15:11:31 +01:00
630 changed files with 356 additions and 271 deletions

View File

@@ -28,8 +28,8 @@ public class BeforeAndAfterAnnotationsUnitTest {
}
@After
public void finalize() {
LOG.info("finalize");
public void teardown() {
LOG.info("teardown");
list.clear();
}

View File

@@ -28,8 +28,8 @@ public class BeforeEachAndAfterEachAnnotationsUnitTest {
}
@AfterEach
public void finalize() {
LOG.info("finalize");
public void teardown() {
LOG.info("teardown");
list.clear();
}