Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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

Copy link
Copy link
Closed
@PhilippSalvisberg

Description

@PhilippSalvisberg
Issue body actions

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;
   begin
      ut.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

    Morty Proxy This is a proxified and sanitized view of the page, visit original site.