type Parameter_Info is private;
type Parameter_Mode is (NORMAL_PARAMETERS, TAP_PARAMETERS);
procedure Parse_Parameters (Mode : Parameter_Mode;
Info : out Parameter_Info);
Parse Ada.Command_Line parameters and put the results to the Info parameter. Raises Invalid_Parameter if some parameter is invalid.
function Capture (Info : Parameter_Info) return Boolean;
Should we capture Ada.Text_IO output?
function Single_Test (Info : Parameter_Info) return Boolean;
Should we run a single test (case/suite/routine) only?
function Test_Name (Info : Parameter_Info) return String;
Return the name of the test passed as a parameter.
function Result_Dir (Info : Parameter_Info) return String;
Return the directory for XML results.