# File test/libttc_test.rb, line 539
  def test_apply_moves!
    game = Game.new(3)
    move_set = ['A1 A2', 'C1 C2', 'E1 E2']
    assert_nothing_raised { move_set.collect { |m| m.to_move(game) } }
    move_set_m = move_set.collect { |m| m.to_move(game) }
    assert_nothing_raised { game.apply_moves! move_set_m }
  end