public void When_constructing_with_a_string_a_ContentSpan_is_created()
        {
            var contentView = new TestContentView("Four");
            var span        = contentView.GetSpan();

            span.Should().BeOfType <ContentSpan>().Which.Content.Should().Contain("Four");
        }