ComparableContractTester

API

ComparableContractTester.java
class ComparableContractTester<T> {
  ComparableContractTester(List<List<T>> orderedTuples)     (1)
  void test()
  List<E> listOf(E... elements)     (2)
}
1 ComparableContractTester(List)

Provide an array of tuples; each tuple should consist of 4 elements, whereby item0 < item1 = item2 < item3 Typically item0 should be null valued (if supported by the impl).

2 listOf(E)

Syntax sugar to remove boilerplate from subclasses.

Members

ComparableContractTester(List)

Provide an array of tuples; each tuple should consist of 4 elements, whereby item0 < item1 = item2 < item3 Typically item0 should be null valued (if supported by the impl).

listOf(E)

Syntax sugar to remove boilerplate from subclasses.