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

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

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

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