|
194 | 194 | </test> |
195 | 195 | <test name="EqualABCAnd123" version="1.0"> |
196 | 196 | <capability code="list-operators" /> |
197 | | - <expression>{ 'a', 'b', 'c' } = { 1, 2, 3 }</expression> |
| 197 | + <expression>{ 'a', 'b', 'c' } as List<Any> ~ { 1, 2, 3 } as List<Any></expression> |
198 | 198 | <output>false</output> |
199 | 199 | </test> |
200 | 200 | <test name="Equal123AndABC" version="1.0"> |
201 | 201 | <capability code="list-operators" /> |
202 | | - <expression>{ 1, 2, 3 } = { 'a', 'b', 'c' }</expression> |
| 202 | + <expression>{ 1, 2, 3 } as List<Any> = { 'a', 'b', 'c' } as List<Any></expression> |
203 | 203 | <output>false</output> |
204 | 204 | </test> |
205 | 205 | <test name="Equal123AndString123" version="1.0"> |
206 | 206 | <capability code="list-operators" /> |
207 | | - <expression>{ 1, 2, 3 } = { '1', '2', '3' }</expression> |
| 207 | + <expression>{ 1, 2, 3 } as List<Any> = { '1', '2', '3' } as List<Any></expression> |
208 | 208 | <output>false</output> |
209 | 209 | </test> |
210 | 210 | <test name="Equal12And123" version="1.0"> |
|
741 | 741 | </test> |
742 | 742 | <test name="EquivalentABCAnd123" version="1.0"> |
743 | 743 | <capability code="list-operators" /> |
744 | | - <expression>{ 'a', 'b', 'c' } ~ { 1, 2, 3 }</expression> |
| 744 | + <expression>{ 'a', 'b', 'c' } as List<Any> ~ { 1, 2, 3 } as List<Any></expression> |
745 | 745 | <output>false</output> |
746 | 746 | <!-- TODO: make Translator resolve isolated Equivalent operator signatures --> |
747 | 747 | </test> |
748 | 748 | <test name="Equivalent123AndABC" version="1.0"> |
749 | 749 | <capability code="list-operators" /> |
750 | | - <expression>{ 1, 2, 3 } ~ { 'a', 'b', 'c' }</expression> |
| 750 | + <expression>{ 1, 2, 3 } as List<Any> ~ { 'a', 'b', 'c' } as List<Any></expression> |
751 | 751 | <output>false</output> |
752 | 752 | <!-- TODO: make Translator resolve isolated Equivalent operator signatures --> |
753 | 753 | </test> |
754 | 754 | <test name="Equivalent123AndString123" version="1.0"> |
755 | 755 | <capability code="list-operators" /> |
756 | | - <expression>{ 1, 2, 3 } ~ { '1', '2', '3' }</expression> |
| 756 | + <expression>{ 1, 2, 3 } as List<Any> ~ { '1', '2', '3' } as List<Any></expression> |
757 | 757 | <output>false</output> |
758 | 758 | <!-- TODO: make Translator resolve isolated Equivalent operator signatures --> |
759 | 759 | </test> |
|
807 | 807 | </test> |
808 | 808 | <test name="NotEqualABCAnd123" version="1.0"> |
809 | 809 | <capability code="list-operators" /> |
810 | | - <expression>{ 'a', 'b', 'c' } != { 1, 2, 3 }</expression> |
| 810 | + <expression>{ 'a', 'b', 'c' } as List<Any> != { 1, 2, 3 } as List<Any></expression> |
811 | 811 | <output>true</output> |
812 | 812 | <!-- TODO: make Translator resolve isolated Equivalent operator signatures --> |
813 | 813 | </test> |
814 | 814 | <test name="NotEqual123AndABC" version="1.0"> |
815 | 815 | <capability code="list-operators" /> |
816 | | - <expression>{ 1, 2, 3 } != { 'a', 'b', 'c' }</expression> |
| 816 | + <expression>{ 1, 2, 3 } as List<Any> != { 'a', 'b', 'c' } as List<Any></expression> |
817 | 817 | <output>true</output> |
818 | 818 | <!-- TODO: make Translator resolve isolated Equivalent operator signatures --> |
819 | 819 | </test> |
820 | 820 | <test name="NotEqual123AndString123" version="1.0"> |
821 | 821 | <capability code="list-operators" /> |
822 | | - <expression>{ 1, 2, 3 } != { '1', '2', '3' }</expression> |
| 822 | + <expression>{ 1, 2, 3 } as List<Any> != { '1', '2', '3' } as List<Any></expression> |
823 | 823 | <output>true</output> |
824 | 824 | <!-- TODO: make Translator resolve isolated Equivalent operator signatures --> |
825 | 825 | </test> |
|
0 commit comments