Skip to content

Feature/1082 failure when comparing nested objects #1179

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 9 commits into from
Jan 29, 2022
Prev Previous commit
Next Next commit
Address PR comments
  • Loading branch information
lwasylow committed Jan 28, 2022
commit c14a3adb30358b19e6e8ef67c32bc37fadfdfb09
16 changes: 8 additions & 8 deletions test/ut3_user/expectations/test_expectation_anydata.pks
Original file line number Diff line number Diff line change
Expand Up @@ -204,28 +204,28 @@ create or replace package test_expectation_anydata is
--%test ( Empty Array not equal array with space )
procedure arr_empty_nqua_arr_e_unord;

--%test ( Failure of comparing nested objects )
--%test ( Reports diff between not equal nested objects )
procedure failure_nesting_objects;

--%test ( Failure of comparing double nested objects )
--%test ( Reports diff between not equal double nested objects )
procedure failure_double_nested_objects;

--%test ( Success of comparing nested objects )
--%test (Reports success when comparing identical nested object )
procedure success_nesting_objects;

--%test ( Success of comparing double nested objects )
--%test ( Reports success when comparing identical double nested object )
procedure success_double_nested_objects;

--%test ( Failure of comparing nested object list )
--%test ( Reports diff between two not equal nested object list )
procedure failure_nested_object_list;

--%test ( Success of comparing nested object list )
--%test ( Reports success when comparing identical nested object list )
procedure success_nested_object_list;

--%test(Nested VARRAYS with same data)
--%test ( Reports success when comparing identical nested VARRAYS )
procedure nested_varray_same_data;

--%test(Nested VARRAYS with different data)
--%test ( Reports diff between two not equal nested VARRAYS )
procedure nested_varray_diff_data;
end;
/