public void GridHasDefinedCountOfRows(int rowCount, int columnCount)
        {
            var grid = new Grid(rowCount, columnCount);

            Assert.Equal(rowCount, grid.GetRowCount());
            Assert.Equal(columnCount, grid.GetCollCount());
        }
 public void GridHasDefinedCountOfRows(int rowCount, int columnCount)
 {
     var grid = new Grid(rowCount, columnCount);
     Assert.Equal(rowCount, grid.GetRowCount());
     Assert.Equal(columnCount, grid.GetCollCount());
 }