From ec2073529a6be9c670617809f39e5b3c18964117 Mon Sep 17 00:00:00 2001 From: Bryant Austin Date: Fri, 10 Jul 2026 10:07:51 -0600 Subject: [PATCH] additional tests as suggested by claude --- tests/cql/CqlQueryTests.xml | 63 +++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/tests/cql/CqlQueryTests.xml b/tests/cql/CqlQueryTests.xml index c7ce167..2504fed 100644 --- a/tests/cql/CqlQueryTests.xml +++ b/tests/cql/CqlQueryTests.xml @@ -20,6 +20,69 @@ {{ A: 2, B: 5 }, { A: 2, B: 6 }, { A: 3, B: 5 }, { A: 3, B: 6 }} + + + + + + ({1, 2, 3, 4, 5}) N where N > 3 + {4, 5} + + + + + ({1, 2, 3}) N where N > 10 + {} + + + + + + + + ({1, 2, 3}) N let Y: N + 1 return Y + {2, 3, 4} + + + + + + + + ({1, 2, 3}) N return N * 2 + {2, 4, 6} + + + + + ({1, 1, 2, 2, 3}) N return N + {1, 2, 3} + + + + + ({1, 1, 2, 2, 3}) N return all N + {1, 1, 2, 2, 3} + + + + + + + + ({1, 2, 3}) A with ({2, 3, 4}) B such that A = B + {2, 3} + + + + + + + + ({1, 2, 3}) A without ({2, 3, 4}) B such that A = B + {1} + +