Home
last modified time | relevance | path

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

/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DPathServiceTest.java213 JimfsPath lowerCasePath = singleNamePath(service, "foo"); in assertCaseInsensitiveMatches()
214 JimfsPath upperCasePath = singleNamePath(service, "FOO"); in assertCaseInsensitiveMatches()
215 JimfsPath nonMatchingPath = singleNamePath(service, "bar"); in assertCaseInsensitiveMatches()
227 JimfsPath lowerCasePath = singleNamePath(service, "foo"); in assertCaseSensitiveMatches()
228 JimfsPath upperCasePath = singleNamePath(service, "FOO"); in assertCaseSensitiveMatches()
249 private static JimfsPath singleNamePath(PathService service, String name) { in singleNamePath() method in PathServiceTest