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
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- A U N I T . T E S T _ F I X T U R E S --
-- --
-- S p e c --
-- --
-- --
-- Copyright (C) 2008-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) --
-- --
------------------------------------------------------------------------------
-- <description>
-- A Test_Fixture is used to provide a common environment for a set of test
-- cases.
--
-- To define a test case from a test fixture, see AUnit.Test_Caller.
--
-- Each test runs in its own fixture so there can be no side effects among
-- test runs.
--
-- Here is an example:
--
-- <code>
-- package Math_Test is
-- Type Test is new AUnit.Test_Fixtures.Test_Fixture with record
-- M_Value1 : Integer;
-- M_Value2 : Integer;
-- end record;
--
-- procedure Set_Up (T : in out Test);
--
-- procedure Test_Addition (T : in out Test);
--
-- end Math_Test;
--
-- package body Math_Test is
--
-- procedure Set_Up (T : in out Test) is
-- begin
-- T.M_Value1 := 2;
-- T.M_Value2 := 3;
-- end Set_Up;
--
-- procedure Test_Addition (T : in out Test) is
-- begin
-- Assert (T.M_Value1 + T.M_Value2 = 5,
-- "Incorrect addition for integers");
-- end Test_Addition;
--
-- end Math_Test;
-- </code>
-- </description>
with AUnit.Assertions;
package AUnit.Test_Fixtures is
type Test_Fixture is new AUnit.Assertions.Test with private;
procedure Set_Up (Test : in out Test_Fixture);
-- Set up performed before each test case
procedure Tear_Down (Test : in out Test_Fixture);
-- Tear down performed after each test case
private
type Test_Fixture is new AUnit.Assertions.Test with null record;
end AUnit.Test_Fixtures;
|