Home
last modified time | relevance | path

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

/external/guice/extensions/multibindings/test/com/google/inject/multibindings/
DMultibinderTest.java23 import static com.google.inject.multibindings.SpiUtils.assertSetVisitor;
126 assertSetVisitor(setKey, stringType, setOf(abc, de), BOTH, false, 0, in testMultibinderAggregatesMultipleModules()
148 assertSetVisitor(setKey, stringType, setOf(module), BOTH, false, 0, in testMultibinderAggregationForAnnotationInstance()
170 assertSetVisitor(setKey, stringType, setOf(module), BOTH, false, 0, in testMultibinderAggregationForAnnotationType()
199 assertSetVisitor(abcSetKey, stringType, setOf(module), BOTH, false, 1, in testMultibinderWithMultipleAnnotationValueSets()
201 assertSetVisitor(deSetKey, stringType, setOf(module), BOTH, false, 1, in testMultibinderWithMultipleAnnotationValueSets()
230 assertSetVisitor(abcSetKey, stringType, setOf(module), BOTH, false, 1, in testMultibinderWithMultipleAnnotationTypeSets()
232 assertSetVisitor(deSetKey, stringType, setOf(module), BOTH, false, 1, in testMultibinderWithMultipleAnnotationTypeSets()
249 assertSetVisitor(Key.get(setOfString), stringType, setOf(module), BOTH, false, 1, in testMultibinderWithMultipleSetTypes()
251 assertSetVisitor(Key.get(setOfInteger), intType, setOf(module), BOTH, false, 1, in testMultibinderWithMultipleSetTypes()
[all …]
DSpiUtils.java418 static <T> void assertSetVisitor(Key<Set<T>> setKey, TypeLiteral<?> elementType, in assertSetVisitor() method in SpiUtils