Files
gnatcoverage/examples/integration/tests/pkg2-test_data.ads
creuse 0f134c2af1 Document new integration Makefile and add example
This documents the integration Makefile generated by gnattest and
adds a new "integration" example to showcase its use and how it
can be used to avoid incidental coverage.

Change-Id: I981049b8a52fa8ecf1c782a89028010c764c91e6
TN: U115-024
2021-09-24 16:15:45 +02:00

27 lines
1.1 KiB
Ada

------------------------------------------------------------------------------
-- --
-- GNATcoverage --
-- --
-- Copyright (C) 2021-2021, AdaCore --
-- --
------------------------------------------------------------------------------
-- This package is intended to set up and tear down the test environment.
-- Once created by GNATtest, this package will never be overwritten
-- automatically. Contents of this package can be modified in any way
-- except for sections surrounded by a 'read only' marker.
with AUnit.Test_Fixtures;
package Pkg2.Test_Data is
-- begin read only
type Test is new AUnit.Test_Fixtures.Test_Fixture
-- end read only
with null record;
procedure Set_Up (Gnattest_T : in out Test);
procedure Tear_Down (Gnattest_T : in out Test);
end Pkg2.Test_Data;