[TestMethod]
public void ShouldThrowExceptionIfDirectorNotExistWhenDeletingDir()
{
var folder1 = rootPath + @"unknowfolder";
Assert.ThrowsException<Exception>(() => Util_Directory.DeleteDirectory(folder1));
}