Remove invalid DirectoryInfo.Clear test

This commit is contained in:
Oliver Booth 2022-12-01 12:28:05 +00:00
parent 0ba7781462
commit 9c2f77b203
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 0 additions and 8 deletions

View File

@ -39,14 +39,6 @@ public class DirectoryInfoTests
directory.Delete();
}
[TestMethod]
public void Clear_ShouldDoNothing_GivenNonExistentDirectory()
{
var directory = new DirectoryInfo(@"/@12#3");
Assert.IsFalse(directory.Exists);
directory.Clear();
}
[TestMethod]
public void Clear_ShouldThrowArgumentNullException_GivenNull()
{