Skip to content

Missing line break after suite annotation in generator skeleton template #157

Description

@PhilippSalvisberg

This is the PL/SQL package to test:

create or replace package etl is
procedure refresh_deptsal;
end etl;
/

When generating a utPLSQL test via context menu or via oddgen the generated code looks like this:

create or replace package test_etl is
--%suite(test_etl)--%test
procedure refresh_deptsal;
end test_etl;
/
create or replace package body test_etl is
procedure refresh_deptsal is
l_actual integer :=0;
l_expected integer :=1;
beginut.expect(l_actual).to_equal(l_expected);
end refresh_deptsal;
end test_etl;
/

Generator settings look like this:

image

Since there is no empty line between --%suite(test_etl) and --%test the test is not found by the utPLSQL framework.

This run:

set serveroutput on size unlimited
execute ut.run;

produced this result:

Finished in 0 seconds
0 tests, 0 failed, 0 errored, 0 disabled, 0 warning(s)
PL/SQL procedure successfully completed.

Maybe this is related to #156.

Metadata

Metadata

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions