Home | History | Annotate | Download | only in multibindings

Lines Matching defs:of

6  * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
128 assertEquals(ImmutableSet.of("foo", "foo2"), fooSet);
131 assertEquals(ImmutableSet.of("bar", "bar2"), barSet);
134 assertEquals(ImmutableSet.of("na", "na2"), noAnnotationSet);
138 assertEquals(ImmutableMap.of("fooKey", "foo", "foo2Key", "foo2"), fooMap);
142 assertEquals(ImmutableMap.of(String.class, "bar", Number.class, "bar2"), barMap);
146 assertEquals(ImmutableMap.of(TestEnum.A, "na", TestEnum.B, "na2"), noAnnotationMap);
150 assertEquals(ImmutableMap.of(wrappedKeyFor(1), 11, wrappedKeyFor(2), 22), wrappedMap);
207 assertEquals(ImmutableSet.of("foo"), injector.getInstance(new Key<Set<String>>() {}));