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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- A U N I T . T E S T _ C A S E S --
-- --
-- B o d y --
-- --
-- --
-- Copyright (C) 2000-2011, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT is maintained by AdaCore (http://www.adacore.com) --
-- --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
with AUnit.Options; use AUnit.Options;
with AUnit.Test_Filters; use AUnit.Test_Filters;
package body AUnit.Test_Cases is
package body Registration is separate;
-----------------
-- Add_Routine --
-----------------
procedure Add_Routine (T : in out Test_Case'Class; Val : Routine_Spec) is
begin
Routine_Lists.Append (T.Routines, Val);
end Add_Routine;
--------------
-- Run_Test --
--------------
procedure Run_Test (Test : in out Test_Case) is
begin
Test.Routine.Routine (Test);
end Run_Test;
---------
-- Run --
---------
procedure Run
(Test : access Test_Case;
Options : AUnit.Options.AUnit_Options;
R : in out Result'Class;
Outcome : out Status)
is
use Routine_Lists;
Result : Status;
C : Cursor;
begin
Outcome := Success;
Routine_Lists.Clear (Test.Routines);
Register_Tests (Test_Case'Class (Test.all));
Set_Up_Case (Test_Case'Class (Test.all));
C := First (Test.Routines);
while Has_Element (C) loop
Test.Routine := Element (C);
if Options.Filter = null
or else Is_Active (Options.Filter.all, Test.all)
then
AUnit.Simple_Test_Cases.Run
(AUnit.Simple_Test_Cases.Test_Case (Test.all)'Access,
Options, R, Result);
if Result = Failure then
Outcome := Failure;
end if;
end if;
Next (C);
end loop;
Tear_Down_Case (Test_Case'Class (Test.all));
end Run;
------------------
-- Routine_Name --
------------------
function Routine_Name (Test : Test_Case) return Message_String is
begin
return Test.Routine.Routine_Name;
end Routine_Name;
------------------
-- Set_Up_Case --
------------------
procedure Set_Up_Case (Test : in out Test_Case) is
-- Default
pragma Unreferenced (Test);
begin
null;
end Set_Up_Case;
--------------------
-- Tear_Down_Case --
--------------------
procedure Tear_Down_Case (Test : in out Test_Case) is
pragma Unreferenced (Test);
begin
null;
end Tear_Down_Case;
package body Specific_Test_Case_Registration is
----------------------
-- Register_Wrapper --
----------------------
procedure Register_Wrapper
(Test : in out Specific_Test_Case'Class;
Routine : Specific_Test_Routine;
Name : String)
is
function Conv is
new Ada.Unchecked_Conversion (Specific_Test_Routine, Test_Routine);
begin
Registration.Register_Routine
(Test_Case'Class (Test),
Conv (Routine),
Name);
end Register_Wrapper;
end Specific_Test_Case_Registration;
end AUnit.Test_Cases;
|