import static org.easymock.EasyMock.*;
public class PathMatchingFilterProviderTest {
@Test
public void testPostProcess() {
PathMatchingFilter filter = createMock(PathMatchingFilter.class);
expect(filter.processPathConfig("/1", "first")).andReturn(filter);
expect(filter.processPathConfig("/2", "second")).andReturn(filter);
replay(filter);
Map<String, String> pathConfigMap = new HashMap<String, String>();
pathConfigMap.put("/1", "first");