CmisCmdlets.Test.Commands.NewCmisFolderTests.CreateExistingFolderWithRecursionReturns C# (CSharp) Method

CreateExistingFolderWithRecursionReturns() private method

private CreateExistingFolderWithRecursionReturns ( ) : void
return 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"));
        }