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