Methods Summary |
---|
public void | setUp()
configureProject("src/etc/testcases/taskdefs/copyfile.xml");
|
public void | tearDown()
executeTarget("cleanup");
|
public void | test1()
expectBuildException("test1", "required argument not specified");
|
public void | test2()
expectBuildException("test2", "required argument not specified");
|
public void | test3()
expectBuildException("test3", "required argument not specified");
|
public void | test4()
expectLog("test4", "DEPRECATED - The copyfile task is deprecated. Use copy instead.Warning: src == dest");
|
public void | test5()
executeTarget("test5");
java.io.File f = new java.io.File(getProjectDir(), "copyfile.tmp");
if (f.exists()) {
f.delete();
} else {
fail("Copy failed");
}
|
public void | test6()
expectBuildException("test6", "target is directory");
|