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

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixed coverage drop on new shortcuts.
  • Loading branch information
jgebal committed May 1, 2017
commit ec0bd42fe9ceed1f16e80d841d925412c1891cd2
1 change: 1 addition & 0 deletions tests/helpers/test_package_1.pck
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
create or replace package test_package_1 is

--%suite
--%displayname(test_package_1)
--%suitepath(tests)

gv_glob_val number;
Expand Down
1 change: 1 addition & 0 deletions tests/helpers/test_package_3.pck
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ create or replace package test_package_3 is

--%suite
--%suitepath(tests2)
--%rollback(auto)

gv_glob_val number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ declare
l_value2 &&1 := &&3;
begin
--Act
ut.expect(l_value1).to_(be_greater_or_equal(l_value2));
ut.expect(l_value1).to_be_greater_or_equal(l_value2);
--Assert
if ut_expectation_processor.get_status = &&4 then
:test_result := ut_utils.tr_success;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ declare
l_value2 &&1 := &&3;
begin
--Act
ut.expect(l_value1).to_(be_greater_than(l_value2));
ut.expect(l_value1).to_be_greater_than(l_value2);
--Assert
if ut_expectation_processor.get_status = &&4 then
:test_result := ut_utils.tr_success;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ declare
l_value2 &&1 := &&3;
begin
--Act
ut.expect(l_value1).to_(be_less_or_equal(l_value2));
ut.expect(l_value1).to_be_less_or_equal(l_value2);
--Assert
if ut_expectation_processor.get_status = &&4 then
:test_result := ut_utils.tr_success;
Expand Down
2 changes: 1 addition & 1 deletion tests/ut_matchers/common/ut.expect.common.be_less_than.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ declare
l_value2 &&1 := &&3;
begin
--Act
ut.expect(l_value1).to_(be_less_than(l_value2));
ut.expect(l_value1).to_be_less_than(l_value2);
--Assert
if ut_expectation_processor.get_status = &&4 then
:test_result := ut_utils.tr_success;
Expand Down