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 36 37 38 39 40 41 42 43 44
|
:mod:`Ahven.XML_Runner` -- Package
==================================
.. module:: Ahven.XML_Runner
.. moduleauthor:: Tero Koskinen <tero.koskinen@iki.fi>
.. versionadded:: 1.2
------------------------
Procedures and Functions
------------------------
Run
'''
::
procedure Run (Suite : in out Framework.Test_Suite'Class);
Run the suite and print the results.
Run
'''
::
procedure Run (Suite : Framework.Test_Suite_Access);
Run the suite and print the results. The routine is
identical to the above routine, but takes an access
parameter to a test suite.
Report_Results
''''''''''''''
::
procedure Report_Results (Result : Results.Result_Collection;
Dir : String);
Report results to the given directory.
|