@Test(dataProvider = "includeMatchingTests")
 public void testIncludeMatching(
     Set<String> values, Collection<String> filters, boolean exactMatch, Set<String> expected) {
   Set<String> actual =
       ListFileUtils.includeMatching(
           values, ListFileUtils.IDENTITY_STRING_CONVERTER, filters, exactMatch);
   Assert.assertEquals(actual, expected);
 }