Searched refs:signatures (Results 1 – 3 of 3) sorted by relevance
56 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsIncludesInheritedMethods() local57 assertContains(signatures, "void notOverridden[] throws []"); in testGetMethodsIncludesInheritedMethods()61 Set<String> signatures = signatures(Sub.class.getDeclaredMethods()); in testGetDeclaredMethodsDoesNotIncludeInheritedMethods() local62 assertFalse(signatures.contains("void notOverridden[] throws []")); in testGetDeclaredMethodsDoesNotIncludeInheritedMethods()71 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsDoesNotIncludeExceptionChanges() local72 assertContains(signatures, "void thrower[] throws []"); in testGetMethodsDoesNotIncludeExceptionChanges()73 assertFalse(signatures.contains("void thrower[] throws [java.lang.Exception]")); in testGetMethodsDoesNotIncludeExceptionChanges()78 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsIncludesSyntheticMethods() local79 assertContains(signatures, "java.lang.String returner[] throws []"); in testGetMethodsIncludesSyntheticMethods()80 assertContains(signatures, "java.lang.Object returner[] throws []"); in testGetMethodsIncludesSyntheticMethods()[all …]
136 String[] signatures) in testRecordReflection() argument148 assertEquals(rc.getAccessor().getGenericReturnType().toString(), signatures[i], in testRecordReflection() local150 rc.getAccessor().getGenericReturnType(), signatures[i])); in testRecordReflection()
443 SignaturesCollection signatures; in getFilter() local445 signatures = getSignatureCollection(internalClassName); in getFilter()450 if (signatures == null) { in getFilter()453 filter = new ExpectedUpstreamFilter(signatures); in getFilter()577 public ExpectedUpstreamFilter(SignaturesCollection signatures) { in ExpectedUpstreamFilter() argument578 this.mSignatures = signatures; in ExpectedUpstreamFilter()