Home
last modified time | relevance | path

Searched refs:actualNames (Results 1 – 2 of 2) 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/testng/src/test/java/test/
DBaseTest.java369 List<String> actualNames = Lists.newArrayList(); in verifyInstanceNames() local
373 actualNames.add(es.getKey() + "#" + (instance != null ? instance.toString() : "")); in verifyInstanceNames()
376 Assert.assertEqualsNoOrder(actualNames.toArray(), expected); in verifyInstanceNames()