Lines Matching refs:get

86         assertTrue(pathMap.get(Paths.get("/")));
130 assertTrue(pathMatcher.matches(Paths.get("f.java")));
131 assertFalse(pathMatcher.matches(Paths.get("f")));
134 assertTrue(pathMatcher.matches(Paths.get("f.t")));
135 assertFalse(pathMatcher.matches(Paths.get("f")));
138 assertTrue(pathMatcher.matches(Paths.get("f.java")));
139 assertTrue(pathMatcher.matches(Paths.get("f.class")));
140 assertFalse(pathMatcher.matches(Paths.get("f.clas")));
141 assertFalse(pathMatcher.matches(Paths.get("f.t")));
144 assertTrue(pathMatcher.matches(Paths.get("f.t")));
145 assertFalse(pathMatcher.matches(Paths.get("f.tl")));
146 assertFalse(pathMatcher.matches(Paths.get("f.")));
149 assertTrue(pathMatcher.matches(Paths.get("/home/f/d")));
150 assertTrue(pathMatcher.matches(Paths.get("/home/f/*")));
151 assertTrue(pathMatcher.matches(Paths.get("/home/*/*")));
152 assertFalse(pathMatcher.matches(Paths.get("/home/f")));
153 assertFalse(pathMatcher.matches(Paths.get("/home/f/d/d")));
156 assertTrue(pathMatcher.matches(Paths.get("/home/f/d")));
157 assertTrue(pathMatcher.matches(Paths.get("/home/f/*")));
158 assertTrue(pathMatcher.matches(Paths.get("/home/*/*")));
159 assertTrue(pathMatcher.matches(Paths.get("/home/f")));
160 assertTrue(pathMatcher.matches(Paths.get("/home/f/d/d")));
161 assertTrue(pathMatcher.matches(Paths.get("/home/f/d/d/d")));
167 assertTrue(pathMatcher.matches(Paths.get("k")));
168 assertTrue(pathMatcher.matches(Paths.get("ck")));
169 assertFalse(pathMatcher.matches(Paths.get("ak")));
170 assertTrue(pathMatcher.matches(Paths.get("kanything")));
171 assertTrue(pathMatcher.matches(Paths.get("hellohik")));
172 assertTrue(pathMatcher.matches(Paths.get("hellok")));
173 assertTrue(pathMatcher.matches(Paths.get("hellohellohellok")));
174 assertFalse(pathMatcher.matches(Paths.get("hellohellohellobk")));
175 assertFalse(pathMatcher.matches(Paths.get("hello")));