public void AddColumnWithInfoIf() { SectionRow.InfoIf(false); var row = (IEnumerable <object>)SectionRow.Build(); Assert.Equal(row.Last(), @"Text"); SectionRow.InfoIf(true); row = (IEnumerable <object>)SectionRow.Build(); Assert.Equal(row.Last(), @"info"); }