public void HavingNullDataGrid_WhenNormalRowListIsInstantiated_ThenThrows() { Assert.Throws <ArgumentNullException>(() => { ContentRowList contentRowList = new ContentRowList(null); }); }
public void SetUp() { dataGrid = new DataGrid(); contentRowList = new ContentRowList(dataGrid); }
public void HavingValidDataGrid_WhenNormalRowListIsInstantiated_ThenSuccess() { DataGrid dataGrid = new DataGrid(); ContentRowList contentRowList = new ContentRowList(dataGrid); }