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

Skip to content

Commit 668817b

Browse files
committed
parameter renamed
1 parent 2edae6c commit 668817b

12 files changed

Lines changed: 24 additions & 24 deletions

source/expectations/ut_expectation_date.tpb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ create or replace type body ut_expectation_date as
66
self.to_( equal(a_expected, a_nulls_are_equal) );
77
end;
88

9-
member procedure to_be_between(self in ut_expectation_date, a_lower_bound date, a_higher_bound date) is
9+
member procedure to_be_between(self in ut_expectation_date, a_lower_bound date, a_upper_bound date) is
1010
begin
11-
ut_utils.debug_log('ut_expectation_date.to_be_between(self in ut_expectation_date, a_lower_bound date, a_higher_bound date)');
12-
self.to_( be_between(a_lower_bound,a_higher_bound) );
11+
ut_utils.debug_log('ut_expectation_date.to_be_between(self in ut_expectation_date, a_lower_bound date, a_upper_bound date)');
12+
self.to_( be_between(a_lower_bound,a_upper_bound) );
1313
end;
1414

1515
end;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
create or replace type ut_expectation_date under ut_expectation
22
(
33
overriding member procedure to_equal(self in ut_expectation_date, a_expected date, a_nulls_are_equal boolean := null),
4-
member procedure to_be_between(self in ut_expectation_date, a_lower_bound date, a_higher_bound date)
4+
member procedure to_be_between(self in ut_expectation_date, a_lower_bound date, a_upper_bound date)
55
)
66
/

source/expectations/ut_expectation_number.tpb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ create or replace type body ut_expectation_number as
66
self.to_( equal(a_expected, a_nulls_are_equal) );
77
end;
88

9-
member procedure to_be_between(self in ut_expectation_number, a_lower_bound number, a_higher_bound number) is
9+
member procedure to_be_between(self in ut_expectation_number, a_lower_bound number, a_upper_bound number) is
1010
begin
11-
ut_utils.debug_log('ut_expectation_number.to_be_between(self in ut_expectation_date, a_lower_bound number, a_higher_bound number)');
12-
self.to_( be_between(a_lower_bound,a_higher_bound) );
11+
ut_utils.debug_log('ut_expectation_number.to_be_between(self in ut_expectation_date, a_lower_bound number, a_upper_bound number)');
12+
self.to_( be_between(a_lower_bound,a_upper_bound) );
1313
end;
1414

1515
end;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
create or replace type ut_expectation_number under ut_expectation
22
(
33
overriding member procedure to_equal(self in ut_expectation_number, a_expected number, a_nulls_are_equal boolean := null),
4-
member procedure to_be_between(self in ut_expectation_number, a_lower_bound number, a_higher_bound number)
4+
member procedure to_be_between(self in ut_expectation_number, a_lower_bound number, a_upper_bound number)
55
)
66
/

source/expectations/ut_expectation_timestamp.tpb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ create or replace type body ut_expectation_timestamp as
66
self.to_( equal(a_expected, a_nulls_are_equal) );
77
end;
88

9-
member procedure to_be_between(self in ut_expectation_timestamp, a_lower_bound timestamp_unconstrained, a_higher_bound timestamp_unconstrained) is
9+
member procedure to_be_between(self in ut_expectation_timestamp, a_lower_bound timestamp_unconstrained, a_upper_bound timestamp_unconstrained) is
1010
begin
11-
ut_utils.debug_log('ut_expectation_timestamp.to_be_between(self in ut_expectation_timestamp, a_lower_bound timestamp_unconstrained, a_higher_bound timestamp_unconstrained)');
12-
self.to_( be_between(a_lower_bound, a_higher_bound) );
11+
ut_utils.debug_log('ut_expectation_timestamp.to_be_between(self in ut_expectation_timestamp, a_lower_bound timestamp_unconstrained, a_upper_bound timestamp_unconstrained)');
12+
self.to_( be_between(a_lower_bound, a_upper_bound) );
1313
end;
1414

1515
end;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
create or replace type ut_expectation_timestamp under ut_expectation
22
(
33
overriding member procedure to_equal(self in ut_expectation_timestamp, a_expected timestamp_unconstrained, a_nulls_are_equal boolean := null),
4-
member procedure to_be_between(self in ut_expectation_timestamp, a_lower_bound timestamp_unconstrained, a_higher_bound timestamp_unconstrained)
4+
member procedure to_be_between(self in ut_expectation_timestamp, a_lower_bound timestamp_unconstrained, a_upper_bound timestamp_unconstrained)
55
)
66
/

source/expectations/ut_expectation_timestamp_ltz.tpb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ create or replace type body ut_expectation_timestamp_ltz as
66
self.to_( equal(a_expected, a_nulls_are_equal) );
77
end;
88

9-
member procedure to_be_between(self in ut_expectation_timestamp_ltz, a_lower_bound timestamp_ltz_unconstrained, a_higher_bound timestamp_ltz_unconstrained) is
9+
member procedure to_be_between(self in ut_expectation_timestamp_ltz, a_lower_bound timestamp_ltz_unconstrained, a_upper_bound timestamp_ltz_unconstrained) is
1010
begin
11-
ut_utils.debug_log('ut_expectation_timestamp_ltz.to_be_between(self in ut_expectation_timestamp_ltz, a_lower_bound timestamp_ltz_unconstrained, a_higher_bound timestamp_ltz_unconstrained)');
12-
self.to_( be_between(a_lower_bound, a_higher_bound) );
11+
ut_utils.debug_log('ut_expectation_timestamp_ltz.to_be_between(self in ut_expectation_timestamp_ltz, a_lower_bound timestamp_ltz_unconstrained, a_upper_bound timestamp_ltz_unconstrained)');
12+
self.to_( be_between(a_lower_bound, a_upper_bound) );
1313
end;
1414

1515
end;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
create or replace type ut_expectation_timestamp_ltz under ut_expectation
22
(
33
overriding member procedure to_equal(self in ut_expectation_timestamp_ltz, a_expected timestamp_ltz_unconstrained, a_nulls_are_equal boolean := null),
4-
member procedure to_be_between(self in ut_expectation_timestamp_ltz, a_lower_bound timestamp_ltz_unconstrained, a_higher_bound timestamp_ltz_unconstrained)
4+
member procedure to_be_between(self in ut_expectation_timestamp_ltz, a_lower_bound timestamp_ltz_unconstrained, a_upper_bound timestamp_ltz_unconstrained)
55
)
66
/

source/expectations/ut_expectation_timestamp_tz.tpb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ create or replace type body ut_expectation_timestamp_tz as
66
self.to_( equal(a_expected, a_nulls_are_equal) );
77
end;
88

9-
member procedure to_be_between(self in ut_expectation_timestamp_tz, a_lower_bound timestamp_tz_unconstrained, a_higher_bound timestamp_tz_unconstrained) is
9+
member procedure to_be_between(self in ut_expectation_timestamp_tz, a_lower_bound timestamp_tz_unconstrained, a_upper_bound timestamp_tz_unconstrained) is
1010
begin
11-
ut_utils.debug_log('ut_expectation_timestamp_tz.to_be_between(self in ut_expectation_timestamp_tz, a_lower_bound timestamp_tz_unconstrained, a_higher_bound timestamp_tz_unconstrained)');
12-
self.to_( be_between(a_lower_bound, a_higher_bound) );
11+
ut_utils.debug_log('ut_expectation_timestamp_tz.to_be_between(self in ut_expectation_timestamp_tz, a_lower_bound timestamp_tz_unconstrained, a_upper_bound timestamp_tz_unconstrained)');
12+
self.to_( be_between(a_lower_bound, a_upper_bound) );
1313
end;
1414

1515
end;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
create or replace type ut_expectation_timestamp_tz under ut_expectation
22
(
33
overriding member procedure to_equal(self in ut_expectation_timestamp_tz, a_expected timestamp_tz_unconstrained, a_nulls_are_equal boolean := null),
4-
member procedure to_be_between(self in ut_expectation_timestamp_tz, a_lower_bound timestamp_tz_unconstrained, a_higher_bound timestamp_tz_unconstrained)
4+
member procedure to_be_between(self in ut_expectation_timestamp_tz, a_lower_bound timestamp_tz_unconstrained, a_upper_bound timestamp_tz_unconstrained)
55
)
66
/

0 commit comments

Comments
 (0)