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.java212 pathInfoWithRegexMatching("/path/index.html", "/path", "/(.)*", "/index.html", ""); in testPathInfoWithRegexMatching()
213 pathInfoWithRegexMatching("/path//hulaboo///index.html", "/path", "/(.)*", in testPathInfoWithRegexMatching()
215 pathInfoWithRegexMatching("/path/", "/path", "/(.)*", "/", ""); in testPathInfoWithRegexMatching()
216 pathInfoWithRegexMatching("/path////////", "/path", "/(.)*", "/", ""); in testPathInfoWithRegexMatching()
219 pathInfoWithRegexMatching("/path/thing////////", "/path", "/thing/(.)*", "/", "/thing"); in testPathInfoWithRegexMatching()
220 pathInfoWithRegexMatching("/path/thing/stuff", "/path", "/thing/(.)*", "/stuff", "/thing"); in testPathInfoWithRegexMatching()
221 pathInfoWithRegexMatching("/path/thing/stuff.html", "/path", "/thing/(.)*", "/stuff.html", in testPathInfoWithRegexMatching()
223 pathInfoWithRegexMatching("/path/thing", "/path", "/thing/(.)*", null, "/thing"); in testPathInfoWithRegexMatching()
226 pathInfoWithRegexMatching("/path/thing.thing", "/path", ".*\\.thing", null, "/thing.thing"); in testPathInfoWithRegexMatching()
227 pathInfoWithRegexMatching("/path///h.thing", "/path", ".*\\.thing", null, "/h.thing"); in testPathInfoWithRegexMatching()
[all …]