Lines Matching refs:source

44         Collection<T> source;
46 UnorderedContentAsserter(Collection<T> source) {
47 this.source = source;
57 assertTrue(source.containsAll(actual));
74 final Collection<Integer> source = IntStream.range(0, size).boxed().collect(toList());
77 Spliterator<Integer> s = Arrays.spliterator(source.stream().toArray(Integer[]::new));
87 final Collection<Integer> source = IntStream.range(0, size).boxed().collect(toList());
90 Spliterator.OfInt s = Arrays.spliterator(source.stream().mapToInt(i->i).toArray());
100 final Collection<Long> source = LongStream.range(0, size).boxed().collect(toList());
103 Spliterator.OfLong s = Arrays.spliterator(source.stream().mapToLong(i->i).toArray());
113 final Collection<Double> source = LongStream.range(0, size).asDoubleStream().boxed().collect(toList());
116 Spliterator.OfDouble s = Arrays.spliterator(source.stream().mapToDouble(i->i).toArray());
129 final Collection<Integer> source = IntStream.range(0, size).boxed().collect(toList());
130 final UnorderedContentAsserter<Integer> uca = new UnorderedContentAsserter<>(source);
133 Spliterator<Integer> s = Arrays.spliterator(source.stream().toArray(Integer[]::new));
143 final Collection<Integer> source = IntStream.range(0, size).boxed().collect(toList());
144 final UnorderedContentAsserter<Integer> uca = new UnorderedContentAsserter<>(source);
147 Spliterator.OfInt s = Arrays.spliterator(source.stream().mapToInt(i->i).toArray());
157 final Collection<Long> source = LongStream.range(0, size).boxed().collect(toList());
158 final UnorderedContentAsserter<Long> uca = new UnorderedContentAsserter<>(source);
161 Spliterator.OfLong s = Arrays.spliterator(source.stream().mapToLong(i->i).toArray());
171 final Collection<Double> source = LongStream.range(0, size).asDoubleStream().boxed().collect(toList());
172 final UnorderedContentAsserter<Double> uca = new UnorderedContentAsserter<>(source);