diff --git a/tests/cql/CqlListOperatorsTest.xml b/tests/cql/CqlListOperatorsTest.xml index 3319102..420a0ea 100644 --- a/tests/cql/CqlListOperatorsTest.xml +++ b/tests/cql/CqlListOperatorsTest.xml @@ -846,16 +846,66 @@ + + + null as List<String> properly includes 'a' + false + + + + {} properly includes 'a' + false + + + + { 'a' } properly includes 'a' + false + + + + { null } properly includes null as String + false + {'s', 'u', 'n'} properly includes null false + + + { null, null } properly includes null as String + false + {'s', 'u', 'n', null} properly includes null true + + + { 'a', 'b' } properly includes 'a' + true + + + + { 'a', 'a' } properly includes 'a' + false + + + + { 'a', 'b' } properly includes 'c' + false + + + + { 'a', null } properly includes 'a' + null + + + + { 'a', 'b', null } properly includes 'a' + true + { @T15:59:59, @T20:59:59.999, @T20:59:49.999 } properly includes @T15:59:59 @@ -869,16 +919,66 @@ + + + 'a' properly included in null as List<String> + false + + + + 'a' properly included in {} + false + + + + 'a' properly included in { 'a' } + false + + + + null as String properly included in { null } + false + null properly included in {'s', 'u', 'n'} false + + + null as String properly included in { null, null } + false + null properly included in {'s', 'u', 'n', null} true + + + 'a' properly included in { 'a', 'b' } + true + + + + 'a' properly included in { 'a', 'a' } + false + + + + 'c' properly included in { 'a', 'b' } + false + + + + 'a' properly included in { 'a', null } + null + + + + 'a' properly included in { 'a', 'b', null } + true + @T15:59:59 properly included in { @T15:59:59, @T20:59:59.999, @T20:59:49.999 }