public void BoolToIntTest()
 {
     Assert.AreEqual(GameOfLife.BoolToInt(true), 1);
     Assert.AreEqual(GameOfLife.BoolToInt(false), 0);
 }