14 lines
514 B
Java
14 lines
514 B
Java
// collectionsindepth/Test.java
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
|
// Framework for performing timed tests of collections.
|
|
|
|
public abstract class Test<C> {
|
|
String name;
|
|
public Test(String name) { this.name = name; }
|
|
// Override this method for different tests.
|
|
// Returns actual number of repetitions of test.
|
|
abstract int test(C collection, TestParam tp);
|
|
}
|