CmisCmdlets.Test.Commands.NewCmisFolderTests.CreateExistingFolderWithRecursionReturns C# (CSharp) Méthode

CreateExistingFolderWithRecursionReturns() private méthode

private CreateExistingFolderWithRecursionReturns ( ) : void
Résultat void
        public void CreateExistingFolderWithRecursionReturns()
        {
            CmisHelper.CreateTempFolder("/__existingFolder");
            var res = Shell.Execute(NewCmisFolderCmd + "/__existingFolder -Recursive");
            var folder = res.First() as IFolder;
            Assert.That(folder, Is.Not.Null);
            Assert.That(folder.Path, Is.EqualTo("/__existingFolder"));
        }