Is there a testsuite for Java custom collections implementation?

Use the Guava SetTestSuiteBuilder.

https://github.com/google/guava/blob/master/guava-testlib/src/com/google/common/collect/testing/SetTestSuiteBuilder.java

Examples:

https://github.com/google/guava/blob/master/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

It is released as part of “guava-testlib” in maven central.

Leave a Comment