示例#1
0
        public void Is_Passed_An_Object_Of_IHtmlControl_That_Is_Not_Of_BlockQuote_Then_Supports_Content_Returns_False(Table table, BlockQuoteControlRenderer renderer)
        {
            var actual = renderer.SupportsContent(table);

            actual.Should().BeFalse();
        }
示例#2
0
        public void Is_Passed_An_Object_Of_IHtmlControl_That_Is_Of_BlockQuote_Then_Supports_Content_Returns_True(BlockQuote quote, BlockQuoteControlRenderer renderer)
        {
            var actual = renderer.SupportsContent(quote);

            actual.Should().BeTrue();
        }