Home
last modified time | relevance | path

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

/external/junit/src/main/java/org/junit/runners/model/
DTestClass.java115 List<FrameworkMethod> methods = collectValues(methodsForAnnotations); in getAnnotatedMethods()
136 return collectValues(fieldsForAnnotations); in getAnnotatedFields()
148 private <T> List<T> collectValues(Map<?, List<T>> map) { in collectValues() method in TestClass
/external/guice/core/test/com/google/inject/internal/
DMultibinderTest.java1417 assertEquals(expectedValues, collectValues(providers)); in testMultibinderCanInjectCollectionOfProviders()
1421 assertEquals(expectedValues, collectValues(javaxProviders)); in testMultibinderCanInjectCollectionOfProviders()
1443 Collection<String> values = collectValues(providers); in testMultibinderCanInjectCollectionOfProvidersWithAnnotation()
1448 assertEquals(expectedValues, collectValues(javaxProviders)); in testMultibinderCanInjectCollectionOfProvidersWithAnnotation()
1529 private <T> Collection<T> collectValues( in collectValues() method in MultibinderTest