Skip to content

Commit

Permalink
[COLLECTIONS-777] Migrate to JUnit 5
Browse files Browse the repository at this point in the history
Remove unused interface
  • Loading branch information
garydgregory committed Nov 11, 2024
1 parent b298139 commit 474de2b
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/test/java/org/apache/commons/collections4/BulkTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* 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
Expand Down Expand Up @@ -57,16 +57,6 @@ public BulkTest() {
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}.
*
Expand Down

0 comments on commit 474de2b

Please sign in to comment.