78910111213
import static org.junit.Assert.assertTrue; public class StringMatchingFilterTest { private static boolean match(String a, String b) { return new StringMatchingFilter(a).apply(b); }