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