Beispiel #1
0
 /**
  * Compares files with the same name from sourceFolder against it's counterpart in targetFolder,
  * but allows source and target files to have different extensions. TODO run tests in parallel
  */
 public static void compareFromDifferentFoldersByName(
     final File sourceFolder,
     final File targetFolder,
     final String srcExtension,
     final String targetExtension,
     final ResourcePostProcessor processor)
     throws IOException {
   compareFromDifferentFolders(
       sourceFolder,
       targetFolder,
       new WildcardFileFilter("*." + srcExtension),
       Transformers.extensionTransformer("css"),
       processor);
 }