def test_create_a_cell(self): alive_cell = Cell(True) self.assertTrue(alive_cell.get_alive_status())
def test_create_death_cell(self): death_cell = Cell(False) self.assertFalse(death_cell.get_alive_status())