System.IO.Tests.Directory_CreateDirectory.DirectoryLongerThanMaxPath_Succeeds C# (CSharp) Метод

DirectoryLongerThanMaxPath_Succeeds() приватный Метод

private DirectoryLongerThanMaxPath_Succeeds ( ) : void
Результат 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