We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since version 1.2.0 the generated code templates are wrongly formatted. I guess this happend during conversion from Xtend to Java.
END END [procedure_name];
END test_[package_name];
CREATE OR REPLACE PACKAGE BODY test_[package_name] IS -- -- test -- PROCEDURE [procedure_name] IS l_actual INTEGER := 0; l_expected INTEGER := 1; BEGIN -- populate actual -- ... -- populate expected -- ... -- assert ut.expect(l_actual).to_equal(l_expected);END [procedure_name]; END test_[package_name]; /
missing line break before END END [procedure_name];
-- -- test -- PROCEDURE [procedure_name] IS l_actual INTEGER := 0; l_expected INTEGER := 1; BEGIN -- populate actual -- ... -- populate expected -- ... -- assert ut.expect(l_actual).to_equal(l_expected);END [procedure_name];
missing indentation of PROCEDURE
PROCEDURE
CREATE OR REPLACE PACKAGE test_[package_name] IS --%suite --%suitepath(alltests) --%test PROCEDURE [procedure_name]; END test_[package_name]; /
looks good.
--%test PROCEDURE [procedure_name];
The text was updated successfully, but these errors were encountered:
2bcdc01
PhilippSalvisberg
No branches or pull requests
Since version 1.2.0 the generated code templates are wrongly formatted. I guess this happend during conversion from Xtend to Java.
ut_body
END END [procedure_name];
END test_[package_name];
ut_body_proc
missing line break before
END END [procedure_name];
ut_spec
missing indentation of
PROCEDURE
ut_spec_proc
looks good.
--%test PROCEDURE [procedure_name];
The text was updated successfully, but these errors were encountered: