Files
gnatcoverage/examples/integration/tests/pkg1-test_data.adb
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

29 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.
package body Pkg1.Test_Data is
procedure Set_Up (Gnattest_T : in out Test) is
pragma Unreferenced (Gnattest_T);
begin
null;
end Set_Up;
procedure Tear_Down (Gnattest_T : in out Test) is
pragma Unreferenced (Gnattest_T);
begin
null;
end Tear_Down;
end Pkg1.Test_Data;