Ejemplo n.º 1
0
 public void TestCheckCellIsEmptyWhenIsNotEmpty()
 {
     Cell cell = new Cell();
      cell.ValueChar = 'X';
      Assert.IsFalse(cell.IsEmpty());
 }
Ejemplo n.º 2
0
 public void TestCheckCellIsEmptyWhenIsEmpty()
 {
     Cell cell = new Cell();
     cell.ValueChar = '-';
     Assert.IsTrue(cell.IsEmpty());
 }