-- $Date: 2003/12/22 13:52:26 $
-- $Revision: 1.5 $
-- $Author: jcrocholl $

with Ada.Text_IO;

with Scores;
with MusicXML;

procedure Test_Suite is
   Score : Scores.Score;
begin
   Score := MusicXML.Parse_Current_Input;
   pragma Debug(Ada.Text_IO.Put_Line("all tests succeeded"));
end Test_Suite;