System.IO.Tests.Directory_CreateDirectory.DirectoryLongerThanMaxPath_Succeeds C# (CSharp) Méthode

DirectoryLongerThanMaxPath_Succeeds() private méthode

private DirectoryLongerThanMaxPath_Succeeds ( ) : void
Résultat void
        public void DirectoryLongerThanMaxPath_Succeeds()
        {
            var paths = IOInputs.GetPathsLongerThanMaxPath(GetTestFilePath());
            Assert.All(paths, (path) =>
            {
                DirectoryInfo result = Create(path);
                Assert.True(Directory.Exists(result.FullName));
            });
        }
Directory_CreateDirectory