public void PrintGrid(string grid) { var g = new Spots(grid); var result = g.Print(); Assert.AreEqual(grid, result); }