Home
last modified time | relevance | path

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

/external/guice/extensions/servlet/test/com/google/inject/servlet/
DServletDefinitionPathsTest.java221 pathInfoWithRegexMatching("/path/index.html", "/path", "/(.)*", "/index.html", ""); in testPathInfoWithRegexMatching()
222 pathInfoWithRegexMatching( in testPathInfoWithRegexMatching()
224 pathInfoWithRegexMatching("/path/", "/path", "/(.)*", "/", ""); in testPathInfoWithRegexMatching()
225 pathInfoWithRegexMatching("/path////////", "/path", "/(.)*", "/", ""); in testPathInfoWithRegexMatching()
228 pathInfoWithRegexMatching("/path/thing////////", "/path", "/thing/(.)*", "/", "/thing"); in testPathInfoWithRegexMatching()
229 pathInfoWithRegexMatching("/path/thing/stuff", "/path", "/thing/(.)*", "/stuff", "/thing"); in testPathInfoWithRegexMatching()
230 pathInfoWithRegexMatching( in testPathInfoWithRegexMatching()
232 pathInfoWithRegexMatching("/path/thing", "/path", "/thing/(.)*", null, "/thing"); in testPathInfoWithRegexMatching()
235 pathInfoWithRegexMatching("/path/thing.thing", "/path", ".*\\.thing", null, "/thing.thing"); in testPathInfoWithRegexMatching()
236 pathInfoWithRegexMatching("/path///h.thing", "/path", ".*\\.thing", null, "/h.thing"); in testPathInfoWithRegexMatching()
[all …]