[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void FromDirectoryIsNullOrEmpty()
{
var fromDir = "";
Util_Directory.Copy(fromDir, "", false, false);
}
// the code method to test have this if condition
if (string.IsNullOrEmpty(fromDir))
{
throw new ArgumentException($"'{nameof(fromDir)}' cannot be null or empty", nameof(fromDir));
}