示例#1
0
 public void CanGetCellByCoordinates()
 {
     Grid grid = new Grid(50, 50);
     Assert.IsInstanceOfType(typeof(Cell), grid.CellAt(1,1));
     Assert.IsInstanceOfType(typeof(Cell), grid.CellAt(25,25));
     Assert.IsInstanceOfType(typeof(Cell), grid.CellAt(50,50));
 }