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