Пример #1
0
class Gol01Test(unittest.TestCase):

    def setUp(self):
        pass

    def tearDown(self):
        pass

    def testCellAppend(self):
        self.cell11 = Cell()
        self.cell11.set_coordinates(1,1)
        self.cell_list = CellList()
        self.cell_list.append(self.cell11)
        result = self.cell_list.exist(1,1)
        assert result == True, 'Gol01.get_size() does not provide the right return value'
        pass

    def testCellRemove(self):
        pass