Describe the bug
Make clear that --%beforeeach and --%aftereach defined in a parent suite are not called in the child suite(s)
They can, however, be referenced like that:
create or replace package child_suite as
--%suite
--%suitepath(parent_suite)
--%beforeeach(parent_suite.public_beforeeach_procedure)
--%test
procedure test;
end;
Describe the bug
Make clear that
--%beforeeachand--%aftereachdefined in a parent suite are not called in the child suite(s)They can, however, be referenced like that: