genode/repos/libports/src/lib/ada/runtimelib/gnattest/tests/ss_utils-test_data.adb
2018-05-30 13:36:08 +02:00

21 lines
597 B
Ada

-- 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 Ss_Utils.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 Ss_Utils.Test_Data;