Skip to content

Commit

Permalink
Add list operator tests
Browse files Browse the repository at this point in the history
  • Loading branch information
antvaset committed Aug 9, 2024
1 parent 85bb561 commit cff4108
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tests/cql/CqlListOperatorsTest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,26 @@
<expression>{} = {}</expression>
<output>true</output>
</test>
<test name="EqualABCAndABC">
<expression>{ 'a', 'b', 'c' } = { 'a', 'b', 'c' }</expression>
<output>true</output>
</test>
<test name="EqualABCAndAB">
<expression>{ 'a', 'b', 'c' } = { 'a', 'b' }</expression>
<output>false</output>
</test>
<test name="EqualABCAnd123">
<expression>{ 'a', 'b', 'c' } = { 1, 2, 3 }</expression>
<output>false</output>
</test>
<test name="Equal123AndABC">
<expression>{ 1, 2, 3 } = { 'a', 'b', 'c' }</expression>
<output>false</output>
</test>
<test name="Equal123AndString123">
<expression>{ 1, 2, 3 } = { '1', '2', '3' }</expression>
<output>false</output>
</test>
<test name="Equal12And123">
<expression>{ 1, 2 } = { 1, 2, 3 }</expression>
<output>false</output>
Expand Down

0 comments on commit cff4108

Please sign in to comment.