- Notifications
You must be signed in to change notification settings - Fork17
Closed
Description
Since version 1.2.0 the generated code templates are wrongly formatted. I guess this happend during conversion from Xtend to Java.
ut_body
- wrong indentation after first comment
- missing line break before
END END [procedure_name];
- unnecessary line break before
END test_[package_name];
CREATEOR REPLACE PACKAGE BODY test_[package_name] IS---- test--PROCEDURE [procedure_name] IS l_actualINTEGER :=0; l_expectedINTEGER :=1;BEGIN-- populate actual-- ...-- populate expected-- ...-- assertut.expect(l_actual).to_equal(l_expected);END [procedure_name];END test_[package_name];/
ut_body_proc
missing line break beforeEND END [procedure_name];
---- test--PROCEDURE [procedure_name] IS l_actualINTEGER :=0; l_expectedINTEGER :=1;BEGIN-- populate actual-- ...-- populate expected-- ...-- assertut.expect(l_actual).to_equal(l_expected);END [procedure_name];
ut_spec
missing indentation ofPROCEDURE
CREATEOR REPLACE PACKAGE test_[package_name] IS--%suite--%suitepath(alltests)--%testPROCEDURE [procedure_name];END test_[package_name];/
ut_spec_proc
looks good.
--%testPROCEDURE [procedure_name];