Skip to content
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
1 change: 1 addition & 0 deletions src/checks/y_check_branch_coverage.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ CLASS y_check_branch_coverage IMPLEMENTATION.
settings-is_threshold_reversed = abap_true.
settings-disable_on_prodcode_selection = abap_true.
settings-disable_on_testcode_selection = abap_true.
settings-apply_on_test_code = abap_false.
settings-documentation = |{ c_docs_path-checks }unit-test-coverages.md|.

set_check_message( 'Branch Coverage of &1% is under the threshold of &2%.' ).
Expand Down
1 change: 1 addition & 0 deletions src/checks/y_check_procedure_coverage.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ CLASS y_check_procedure_coverage IMPLEMENTATION.
settings-is_threshold_reversed = abap_true.
settings-disable_on_prodcode_selection = abap_true.
settings-disable_on_testcode_selection = abap_true.
settings-apply_on_test_code = abap_false.
settings-documentation = |{ c_docs_path-checks }unit-test-coverages.md|.

set_check_message( 'Procedure Coverage of &1% is under the threshold of &2%.' ).
Expand Down
1 change: 1 addition & 0 deletions src/checks/y_check_statement_coverage.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ CLASS y_check_statement_coverage IMPLEMENTATION.
settings-is_threshold_reversed = abap_true.
settings-disable_on_prodcode_selection = abap_true.
settings-disable_on_testcode_selection = abap_true.
settings-apply_on_test_code = abap_false.
settings-documentation = |{ c_docs_path-checks }unit-test-coverages.md|.

set_check_message( 'Statement Coverage of &1% is under the threshold of &2%.' ).
Expand Down