Пример #1
0
 public void A_cell_should_be_alive_by_default()
 {
     var cell = new Cell();
     Assert.AreEqual(new IsAlive(), cell.IsDeadOrAlive());
 }
Пример #2
0
 public void A_cell_is_dead_after_killing_them()
 {
     var cell = new Cell();
     cell.Kill();
     Assert.AreEqual(new IsDead(), cell.IsDeadOrAlive());
 }