public void ApplyStrongToLastColumnIf()
        {
            SectionRow.StrongIf(false);
            var row = (IEnumerable <object>)SectionRow.Build();

            Assert.Equal(row.Last(), @"Text");

            SectionRow.StrongIf(true);
            row = (IEnumerable <object>)SectionRow.Build();

            Assert.Equal(row.Last(), @"*Text*");
        }