Home | History | Annotate | Download | only in collect

Lines Matching defs:ImmutableSet

100     assertEquals(ImmutableSet.of(), ContiguousSet.create(Range.closedOpen(1, 1), integers()));
101 assertEquals(ImmutableSet.of(), ContiguousSet.create(Range.openClosed(5, 5), integers()));
102 assertEquals(ImmutableSet.of(),
104 assertEquals(ImmutableSet.of(),
207 for (Set<Integer> subset : Sets.powerSet(ImmutableSet.of(1, 2, 3))) {
210 for (Set<Integer> subset : Sets.powerSet(ImmutableSet.of(1, 2, 3))) {
211 assertFalse(set.containsAll(Sets.union(subset, ImmutableSet.of(9))));
213 assertFalse(set.containsAll(ImmutableSet.of("blah")));
267 assertEquals(ImmutableSet.of(), set.intersection(emptySet));
268 assertEquals(ImmutableSet.of(), emptySet.intersection(set));
269 assertEquals(ImmutableSet.of(),
276 assertEquals(ImmutableSet.of(1, 2, 3),
278 assertEquals(ImmutableSet.of(1, 2, 3),