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/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DPathSubject.java274 List<Path> actualNames = new ArrayList<>(); in hasChildren() local
276 actualNames.add(path.getFileName()); in hasChildren()
279 if (!actualNames.equals(expectedNames)) { in hasChildren()
282 fact("but had children", actualNames), in hasChildren()
/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()