Home
last modified time | relevance | path

Searched refs:assertMapVisitor (Results 1 – 2 of 2) sorted by relevance

/external/guice/extensions/multibindings/test/com/google/inject/multibindings/
DMapBinderTest.java23 import static com.google.inject.multibindings.SpiUtils.assertMapVisitor;
188 assertMapVisitor(Key.get(mapOfString), stringType, stringType, setOf(abc, de), BOTH, false, 0, in testMapBinderAggregatesMultipleModules()
214 assertMapVisitor(key, stringType, stringType, setOf(module), BOTH, false, 0, in testMapBinderAggregationForAnnotationInstance()
240 assertMapVisitor(key, stringType, stringType, setOf(module), BOTH, false, 0, in testMapBinderAggregationForAnnotationType()
271 assertMapVisitor(abcKey, stringType, stringType, setOf(module), BOTH, false, 1, in testMapBinderWithMultipleAnnotationValueSets()
273 assertMapVisitor(deKey, stringType, stringType, setOf(module), BOTH, false, 1, in testMapBinderWithMultipleAnnotationValueSets()
306 assertMapVisitor(abcKey, stringType, stringType, setOf(module), BOTH, false, 1, in testMapBinderWithMultipleAnnotationTypeSets()
308 assertMapVisitor(deKey, stringType, stringType, setOf(module), BOTH, false, 1, in testMapBinderWithMultipleAnnotationTypeSets()
331 assertMapVisitor(Key.get(mapOfString), stringType, stringType, setOf(module), BOTH, false, 1, in testMapBinderWithMultipleTypes()
333 assertMapVisitor(Key.get(mapOfInteger), stringType, intType, setOf(module), BOTH, false, 1, in testMapBinderWithMultipleTypes()
[all …]
DSpiUtils.java110 static <T> void assertMapVisitor(Key<T> mapKey, TypeLiteral<?> keyType, TypeLiteral<?> valueType, in assertMapVisitor() method in SpiUtils