private void copyFile()

in commons-testing-junit4/src/main/java/org/apache/commons/testing/junit4/io/CopyFileTestRule.java [72:77]


    private void copyFile() throws IOException {
        final File fromFile = getSourceFile();
        final File toFile = getTargetFile();
        FileUtils.copyFile(fromFile, toFile);
        Assert.assertTrue(toFile.exists());
    }