AUnit_Options | |
Default_Options |
36 | type AUnit_Options is record |
---|---|
37 | Global_Timer : Boolean := False; |
38 | Test_Case_Timer : Boolean := False; |
39 | Report_Successes : Boolean := True; |
40 | Filter : AUnit.Test_Filters.Test_Filter_Access := null; |
41 | end record; |
Options used to determine how a test should be run.
44 | -- Options used to determine how a test should be run. |
---|---|
45 | |
46 | Default_Options : constant AUnit_Options := |
47 | (Global_Timer => False, |
48 | Test_Case_Timer => False, |
49 | Report_Successes => True, |
50 | Filter => null); |