System.IO.Tests.Directory_CreateDirectory.DirectoryLongerThanMaxDirectoryAsPath_Succeeds C# (CSharp) Method

DirectoryLongerThanMaxDirectoryAsPath_Succeeds() private method

private DirectoryLongerThanMaxDirectoryAsPath_Succeeds ( ) : void
return void
        public void DirectoryLongerThanMaxDirectoryAsPath_Succeeds()
        {
            var paths = IOInputs.GetPathsLongerThanMaxDirectory(GetTestFilePath());
            Assert.All(paths, (path) =>
            {
                var result = Create(path);
                Assert.True(Directory.Exists(result.FullName));
            });
        }
Directory_CreateDirectory