ApiExamples.ExDocumentBuilder.InsertOleObjectException C# (CSharp) Method

InsertOleObjectException() private method

private InsertOleObjectException ( ) : void
return void
        public void InsertOleObjectException()
        {
            Document doc = new Document();
            DocumentBuilder builder = new DocumentBuilder(doc);

            Assert.That(() => builder.InsertOleObject("", "checkbox", false, true, null), Throws.TypeOf<ArgumentException>());
        }
ExDocumentBuilder