1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
:mod:`Ahven.Runner` -- Package
==============================
.. module:: Ahven.Runner
.. moduleauthor:: Tero Koskinen <tero.koskinen@iki.fi>
-----
Types
-----
Report_Proc
'''''''''''
::
type Report_Proc is access procedure
(Test_Results : Results.Result_Collection;
Args : Parameters.Parameter_Info);
-------------------------
Procedures and Funcstions
-------------------------
Run_Suite
'''''''''
::
procedure Run_Suite (Suite : in out Framework.Test'Class;
Reporter : Report_Proc);
Run the given test (case/suite) and pass the results and
the command line argument info to the reporter procedure.
|