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

UnixWhiteSpaceAsPath_Allowed() private méthode

private UnixWhiteSpaceAsPath_Allowed ( ) : void
Résultat void
        public void UnixWhiteSpaceAsPath_Allowed()
        {
            var paths = IOInputs.GetWhiteSpace();
            Assert.All(paths, (path) =>
            {
                Create(Path.Combine(TestDirectory, path));
                Assert.True(Directory.Exists(Path.Combine(TestDirectory, path)));
            });
        }
Directory_CreateDirectory