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

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

private UnixPathLongerThan256_Allowed ( ) : void
Результат void
        public void UnixPathLongerThan256_Allowed()
        {
            DirectoryInfo testDir = Create(GetTestFilePath());
            PathInfo path = IOServices.GetPath(testDir.FullName, 257, IOInputs.MaxComponent);
            DirectoryInfo result = Create(path.FullPath);
            Assert.Equal(path.FullPath, result.FullName);
            Assert.True(Directory.Exists(result.FullName));
        }
Directory_CreateDirectory