assertEquals(3, matches.size());
}
@Test
public void wildcardMatchingPathAttributeWithSlash() throws Exception {
MatchNode matchNode = new MatchNode();
PrivateAccessor.setField(matchNode, "wildcard", "abc/*/*");
MatcherContext matcherContext = matchNode.lookupMatcherContext();
Map<String, String> matches = matcherContext.match("abc/def/ghi");
assertTrue(matches.containsValue("abc/def/ghi"));
assertTrue(matches.containsValue("def"));
assertTrue(matches.containsValue("ghi"));
assertEquals(3, matches.size());