[TestMethod]
public void FromDirectoryIsnullorEmptyUsingTryCatch()
{
try
{
var fromDir = "";
Util_Directory.Copy(fromDir, "", false, false);
}
catch (ArgumentException)
{
//test successfull here
return;
}
Assert.Fail("Call to Copy method did not fail");
}