D | CollectorTester.java | 51 public final class CollectorTester<T, A, R> { class 56 public static <T, A, R> CollectorTester<T, A, R> of(Collector<T, A, R> collector) { in of() 64 public static <T, A, R> CollectorTester<T, A, R> of( in of() 66 return new CollectorTester<>(collector, equivalence); in of() 72 private CollectorTester( in CollectorTester() method in CollectorTester 143 public final CollectorTester<T, A, R> expectCollects(@Nullable R expectedResult, T... inputs) { in expectCollects()
|