Let's read a function from DominStool.py
def move(self: 'DomainStools', cheese_to_move: 'Cheese',
cheese: 'Cheese'):
'''
Raise CannotMoveError if cheese_to_move is the bottom cheese, or its
size is larger than the size of cheese, or cheese is not at the top
of a stool. Else, cheese_to_move is removed from the original stool
to the stool which cheese is in.
'''
for x in self.stools:
# If cheese_to_move is the bottom, raise CannotMoveError
if cheese_to_move == x[0]:
raise CannotMoveError()
# If the size of cheese_to_move is larger than that of cheese,
# raise CannotMoveError
if cheese_to_move.size > cheese.size:
raise CannotMoveError()
# If cheese_to_move is found in list x, but it is not the last one,
# raise CannotMoveError, else: remove cheese_to_move from x
if cheese_to_move in x:
if cheese_to_move != x[-1]:
raise CannotMoveError()
else:
x.remove(cheese_to_move)
# If cheese is found in list y, but it is not the last one in the list,
# raise CannotMoveError, else append cheese_to_move to y.
for y in self.stools:
if cheese in y:
if cheese != y[-1]:
x.append(cheese_to_move)
raise CannotMoveError()
else:
y.append(cheese_to_move)
self.num_of_moves += 1
When we first wrote this function, we didn't write green part. Then we always found a bug which we move a cheese to above another, if another cheese is not the top one of that stool, it would raise CannotMoveError. However, after that Error happened, the rest of cheeses could move to any where. We tried many times, eventually we found if cheese_to_move(read part) enter the if statement, it would remove that cheese. However, if we do not have green part, it could only raise CannotMoveError. Then, the bug would produce. It was very interesting. We need to take more attention when we design.