Exemplo n.º 1
0
 public void verify() throws IOException {
   assertPathsEqual(templatePath, destPath);
 }
Exemplo n.º 2
0
 public void verify(Path subdirectory) throws IOException {
   assertPathsEqual(templatePath.resolve(subdirectory), destPath.resolve(subdirectory));
 }
Exemplo n.º 3
0
 public void verify(Path templateSubdirectory, Path destinationSubdirectory) throws IOException {
   assertPathsEqual(
       templatePath.resolve(templateSubdirectory), destPath.resolve(destinationSubdirectory));
 }