CmisCmdlets.Test.Commands.NewCmisDocumentTests.CreatingDocumentAtExistingPathThrows C# (CSharp) Method

CreatingDocumentAtExistingPathThrows() private method

private CreatingDocumentAtExistingPathThrows ( ) : void
return void
        public void CreatingDocumentAtExistingPathThrows()
        {
            CmisHelper.CreateTempDocument("__existingFile", null);
            Assert.Throws<CmdletInvocationException>(delegate {
                Shell.Execute(NewCmisDocumentCmd + "__existingFile");
            });
        }