Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
48abf1a
Initial checkin
lwasylow Jun 1, 2020
7041912
added expectation
lwasylow Jun 2, 2020
13d86b6
Adding more methods
lwasylow Jun 2, 2020
caeeb30
Adding contain and not contain
lwasylow Jun 2, 2020
8ff4f6b
Adding code and tests,.
lwasylow Jun 6, 2020
89cb0bc
Fixingtoo long names
lwasylow Jun 6, 2020
a5481ac
fixing issue
lwasylow Jun 6, 2020
9ee0e75
Update documentation and tests
lwasylow Jun 7, 2020
a660208
First code corrections
lwasylow Jun 14, 2020
ada1ea4
Resolving another comment
lwasylow Jun 14, 2020
fe1b0cb
Updating issues
lwasylow Jun 14, 2020
013db74
Update tble
lwasylow Jun 14, 2020
b5c73b4
Separated into two different matchers
jgebal Jun 19, 2020
2e721da
CHECKPOINT
lwasylow Jun 19, 2020
fbc0f26
Merge branch 'feature/rework_matcher' of https://github.com/utPLSQL/u…
lwasylow Jun 19, 2020
f182430
Update uninstall
lwasylow Jun 19, 2020
e3fb2d7
Update progress
lwasylow Jun 19, 2020
322e0a1
Making code a bit more readable
lwasylow Jun 19, 2020
ff15596
Added tests for `be_within_pct`
jgebal Jun 20, 2020
3cae9a2
Fixed test issue
jgebal Jun 20, 2020
22549db
Fixed stacktrace for failed expectations on chained matchers.
jgebal Jun 21, 2020
1d771a5
Update timestamps
lwasylow Jun 25, 2020
363c333
Fixed and simplified matcher
jgebal Jun 27, 2020
0ea8925
Fixed native dynamic SQL types compatibility for 11g
jgebal Jun 28, 2020
7c01afb
Fixed native dynamic SQL types compatibility for 11g
jgebal Jun 28, 2020
66d92fc
Merge branch 'develop' into feature/rework_matcher
jgebal Jan 28, 2022
590fb38
Improving test stability (flaky tests)
jgebal Jan 28, 2022
5e2642a
Removing reference to ut3_develop schema.
jgebal Jan 28, 2022
ed06e33
Relaxed sql-injection check to work with 11g2
jgebal Jan 28, 2022
38f3cbc
Fixed issues with comparison of dates&timestamps using interval year-…
jgebal Jan 30, 2022
86e84c8
Improving code coverage.
jgebal Jan 31, 2022
718ac0d
Improved test stability.
jgebal Jan 31, 2022
6dbef20
Fixing build process to build using develop branch as testing framewo…
jgebal Jan 31, 2022
25b55b4
Improving test coverage.
jgebal Jan 31, 2022
5b5a5c0
Improving matcher documentation
jgebal Jan 31, 2022
7fec0f9
Added tests for 0 value of actual and expected and actual greater tha…
jgebal Feb 2, 2022
fd7ef9c
Fixed issues with precission of distance. `NATURAL` is a subtype of i…
jgebal Feb 2, 2022
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
Updating issues
  • Loading branch information
lwasylow committed Jun 14, 2020
commit fe1b0cb4c93314257b196157e33eec42f3c7d251
16 changes: 8 additions & 8 deletions source/expectations/ut_expectation_compound.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -66,36 +66,36 @@ create or replace type body ut_expectation_compound as
return treat(l_result as ut_equal);
end;

member function to_contain(a_expected sys_refcursor) return ut_equal is
l_result ut_equal;
member function to_contain(a_expected sys_refcursor) return ut_contain is
l_result ut_contain;
begin
l_result := ut_contain(a_expected);
l_result.expectation := self;
return l_result;
end;

member function not_to_contain(a_expected sys_refcursor) return ut_equal is
member function not_to_contain(a_expected sys_refcursor) return ut_contain is
l_result ut_matcher;
begin
l_result := ut_contain(a_expected).negated();
l_result.expectation := self;
return treat(l_result as ut_equal);
return treat(l_result as ut_contain);
end;

member function to_contain(a_expected anydata) return ut_equal is
l_result ut_equal;
member function to_contain(a_expected anydata) return ut_contain is
l_result ut_contain;
begin
l_result := ut_contain(a_expected);
l_result.expectation := self;
return l_result;
end;

member function not_to_contain(a_expected anydata) return ut_equal is
member function not_to_contain(a_expected anydata) return ut_contain is
l_result ut_matcher;
begin
l_result := ut_contain(a_expected).negated();
l_result.expectation := self;
return treat(l_result as ut_equal);
return treat(l_result as ut_contain);
end;

end;
Expand Down
8 changes: 4 additions & 4 deletions source/expectations/ut_expectation_compound.tps
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ create or replace type ut_expectation_compound under ut_expectation(
member function not_to_equal(a_expected anydata, a_nulls_are_equal boolean := null) return ut_equal,
member function to_equal(a_expected sys_refcursor, a_nulls_are_equal boolean := null) return ut_equal,
member function not_to_equal(a_expected sys_refcursor, a_nulls_are_equal boolean := null) return ut_equal,
member function to_contain(a_expected sys_refcursor) return ut_equal,
member function not_to_contain(a_expected sys_refcursor) return ut_equal,
member function to_contain(a_expected anydata) return ut_equal,
member function not_to_contain(a_expected anydata) return ut_equal
member function to_contain(a_expected sys_refcursor) return ut_contain,
member function not_to_contain(a_expected sys_refcursor) return ut_contain,
member function to_contain(a_expected anydata) return ut_contain,
member function not_to_contain(a_expected anydata) return ut_contain
)
/

Expand Down