public void verify() throws IOException { assertPathsEqual(templatePath, destPath); }
public void verify(Path subdirectory) throws IOException { assertPathsEqual(templatePath.resolve(subdirectory), destPath.resolve(subdirectory)); }
public void verify(Path templateSubdirectory, Path destinationSubdirectory) throws IOException { assertPathsEqual( templatePath.resolve(templateSubdirectory), destPath.resolve(destinationSubdirectory)); }