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