diff --git a/tests/cql/CqlConditionalOperatorsTest.xml b/tests/cql/CqlConditionalOperatorsTest.xml
index 9541628..6a70358 100644
--- a/tests/cql/CqlConditionalOperatorsTest.xml
+++ b/tests/cql/CqlConditionalOperatorsTest.xml
@@ -29,6 +29,15 @@
if 10 = null then 5 else 10
+
+
+ if null as Boolean then 5 else 10
+
+
+
+ if true then (if false then 1 else 2) else 3
+
+
@@ -73,6 +82,11 @@
+
+
+ case when null as Boolean then 1 else 2 end
+
+
@@ -117,5 +131,15 @@
+
+
+ case (null as Integer) when 5 then 12 when 10 then 15 else 0 end
+
+
+
+
+ case 5 when (null as Integer) then 12 when 5 then 99 else 0 end
+
+