You've already forked gnatcoverage
mirror of
https://github.com/AdaCore/gnatcoverage.git
synced 2026-02-12 12:44:55 -08:00
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
29 lines
1.1 KiB
Ada
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;
|