[COLLECTIONS-777] Migrate to JUnit 5

Remove unused interface
This commit is contained in:
Gary Gregory 2024-11-11 09:30:47 -05:00
parent b29813945d
commit 474de2bb1f
1 changed files with 1 additions and 11 deletions

View File

@ -19,7 +19,7 @@ package org.apache.commons.collections4;
/**
* This class is left over from the JUnit 3 implementation.
*/
public class BulkTest implements Cloneable {
public class BulkTest {
// Note: BulkTest is Cloneable to make it easier to construct
// BulkTest instances for simple test methods that are defined in
@ -57,16 +57,6 @@ public class BulkTest implements Cloneable {
this.verboseName = getClass().getName();
}
/**
* Creates a clone of this {@code BulkTest}.
*
* @return a clone of this {@code BulkTest}
*/
@Override
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
/**
* Returns the name of the simple test method of this {@code BulkTest}.
*