示例#1
0
 def test_create_a_cell(self):
     alive_cell = Cell(True)
     self.assertTrue(alive_cell.get_alive_status())
示例#2
0
 def test_create_death_cell(self):
     death_cell = Cell(False)
     self.assertFalse(death_cell.get_alive_status())