# File lib/adaptation/test/test_help.rb, line 225
  def message message_symbol
    # build a message object from fixture
    message_xml, message_object = load_message_fixture message_symbol

    # load mock objects
    Dir["test/mocks/test/*.rb"].each do |f|
      require f
    end 

    # clean mom (delete mom.txt file)
    mom_mock_file = ADAPTOR_ROOT + '/test/mocks/test/mom.txt'
    if File.exists? mom_mock_file
      File.delete mom_mock_file
    end

    Adaptation::Base.new.process message_xml

  end