Home
last modified time | relevance | path

Searched refs:actualNames (Results 1 – 3 of 3) sorted by relevance

/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
DSubstituteLoggerFactoryTest.java50 Set<String> actualNames = new HashSet<String>(factory.getLoggerNames()); in testLoggerNameList() local
52 assertEquals(expectedNames, actualNames); in testLoggerNameList()
61 Set<String> actualNames = new HashSet<String>(); in testLoggers() local
63 actualNames.add(slog.getName()); in testLoggers()
66 assertEquals(expectedNames, actualNames); in testLoggers()
/external/android-mock/tests/com/google/android/testing/mocking/
DAndroidMockGeneratorTest.java437 List<String> actualNames = getMethodNames(generatedClass.getDeclaredMethods()); in testAddMethods() local
438 assertUnorderedContentsSame(expectedNames, actualNames); in testAddMethods()
451 List<String> actualNames = getMethodNames(generatedClass.getDeclaredMethods()); in testAddMethodsObjectClass() local
452 assertUnorderedContentsSame(expectedNames, actualNames); in testAddMethodsObjectClass()
466 List<String> actualNames = getMethodNames(generatedClass.getDeclaredMethods()); in testAddMethodsUsesSuperclass() local
467 assertUnorderedContentsSame(expectedNames, actualNames); in testAddMethodsUsesSuperclass()
481 List<String> actualNames = getMethodSignatures(methods); in testGetAllMethods() local
482 assertUnorderedContentsSame(expectedNames, actualNames); in testGetAllMethods()
491 List<String> actualNames = getMethodNames(generatedInterface.getDeclaredMethods()); in testGenerateInterface() local
492 assertUnorderedContentsSame(expectedNames, actualNames); in testGenerateInterface()
[all …]
DAndroidFrameworkMockGeneratorTest.java97 List<String> actualNames = getClassNames(classes); in testCreateMockForClass() local
98 assertUnorderedContentsSame(expectedNames, actualNames); in testCreateMockForClass()