Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Updated unit tests after coverage format fix #1138

New issue

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

Merged
merged 1 commit into from
May 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@ create or replace package body test_cov_cobertura_reporter is
</sources>
<packages>
<package name="]'||upper(l_name)||q'[" line-rate="0.0" branch-rate="0.0" complexity="0.0">
<classes>
<class name="]'||upper(l_name)||q'[" filename="]'||l_file_path||q'[" line-rate="0.0" branch-rate="0.0" complexity="0.0">
<lines>
]'||l_block_cov||q'[
<line number="6" hits="0" branch="false"/>
</lines>
</class>
</classes>
</package>
</packages>
</coverage>]';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ create or replace package body test_coverage_standalone is
</sources>
<packages>
<package name="]'||upper(a_object_name)||q'[" line-rate="0.0" branch-rate="0.0" complexity="0.0">
<classes>
<class name="]'||upper(a_object_name)||q'[" filename="]'||l_file_path||q'[" line-rate="0.0" branch-rate="0.0" complexity="0.0">
<lines>
]'||l_block_cov||q'[
<line number="6" hits="1" branch="false"/>
</lines>
</class>
</classes>
</package>
</packages>
</coverage>]';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ create or replace package body test_proftab_coverage is
</sources>
<packages>
<package name="{P}" line-rate="0.0" branch-rate="0.0" complexity="0.0">
<classes>
<class name="{P}" filename="package body ut3_develop.{p}" line-rate="0.0" branch-rate="0.0" complexity="0.0">
<lines>
<line number="1" hits="0" branch="false"/>
Expand All @@ -183,6 +184,7 @@ create or replace package body test_proftab_coverage is
<line number="9" hits="0" branch="false"/>
</lines>
</class>
</classes>
</package>
</packages>
</coverage>]';
Expand Down