public void Is_Passed_An_Object_Of_IHtmlControl_That_Is_Not_Of_Attachment_Then_Supports_Content_Returns_False(Table table, CardControlRenderer renderer) { var actual = renderer.SupportsContent(table); actual.Should().BeFalse(); }
public void Is_Passed_An_Object_Of_IHtmlControl_That_Is_Of_RelatedArticle_Then_Supports_Content_Returns_True(Card card, CardControlRenderer renderer) { var actual = renderer.SupportsContent(card); actual.Should().BeTrue(); }