コード例 #1
0
ファイル: UniverseTest.cs プロジェクト: cuernacode/GameOfLife
 public void GetAliveCellsCountShouldReturnTwoWhenInitializedWithTwoAliveCells()
 {
     _universe.AddCell(0, 0);
     _universe.AddCell(0, 0);
     Assert.AreEqual(2, _universe.GetAliveCellsCount());
 }