We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9d59a2 commit 264f1e0Copy full SHA for 264f1e0
tests/TestableIO.System.IO.Abstractions.TestingHelpers.Tests/MockDirectoryTests.cs
@@ -755,10 +755,11 @@ public async Task MockDirectory_CreateDirectory_ShouldSupportExtendedLengthPaths
755
var fileSystem = new MockFileSystem();
756
757
// Act
758
- fileSystem.Directory.CreateDirectory(XFS.Path(@"\\?\c:\bar"));
+ var directoryInfo = fileSystem.Directory.CreateDirectory(XFS.Path(@"\\?\c:\bar"));
759
760
// Assert
761
await That(fileSystem.Directory.Exists(XFS.Path(@"\\?\c:\bar"))).IsTrue();
762
+ await That(directoryInfo.FullName).IsEqualTo(@"\\?\c:\bar");
763
}
764
765
// Issue #210
0 commit comments