Пример #1
0
 public void TestRule4()
 {
     List<List<bool>> map = new List<List<bool>>();
     map.Add(new List<bool>(new bool[] { true, true, true }));
     map.Add(new List<bool>(new bool[] { false, false, false }));
     map.Add(new List<bool>(new bool[] { false, false, false }));
     Cell cell = new Cell(1, 1, map);
     cell.getAliveNeighbors();
     cell.rule4();
     Assert.AreEqual(true, cell.isAlive());
 }