CmisCmdlets.Test.Commands.CmisWorkingFolderTests.SetWFThrowsWhenNotExisting C# (CSharp) Method

SetWFThrowsWhenNotExisting() private method

private SetWFThrowsWhenNotExisting ( ) : void
return void
        public void SetWFThrowsWhenNotExisting()
        {
            Assert.Throws<CmdletInvocationException>(delegate {
                Shell.Execute(
                    GetConnectToTestRepoCmd(),
                    SetCmisWorkingFolderCmd + "__nonExisting"
                );
            });
        }