//rule 1 - Any live cell with fewer than two live 
 //neighbours dies.
 public void UnderPopulationTest()
 {
     GameOfLife test1 = new GameOfLife(3, 3);
     test1.grid[1, 1] = true;
     Assert.IsFalse(test1.UnderPopulation(1, 1));
 }