public void Is_Passed_An_Object_Of_IHtmlControl_That_Is_Not_Of_Attachment_Then_Supports_Content_Returns_False(Table table, AttachmentControlRenderer renderer) { var actual = renderer.SupportsContent(table); actual.Should().BeFalse(); }
public void Is_Passed_An_Object_Of_IHtmlControl_That_Is_Of_Attachment_Then_Supports_Content_Returns_True(DocumentAttachment attachment, AttachmentControlRenderer renderer) { var actual = renderer.SupportsContent(attachment); actual.Should().BeTrue(); }