From 2e2d4b27de2d1faddf73cba025df8e4d074b48f5 Mon Sep 17 00:00:00 2001 From: Bryant Austin Date: Thu, 9 Jul 2026 13:29:51 -0600 Subject: [PATCH] 3 split tests added; issue #131 --- tests/cql/CqlStringOperatorsTest.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/cql/CqlStringOperatorsTest.xml b/tests/cql/CqlStringOperatorsTest.xml index e1836aa..dbbac41 100644 --- a/tests/cql/CqlStringOperatorsTest.xml +++ b/tests/cql/CqlStringOperatorsTest.xml @@ -317,6 +317,24 @@ Split('a,b', ',') {'a','b'} + + + + Split('', ',') + { '' } + + + + + Split('ABC', '') + { 'A', 'B', 'C' } + + + + + Split('', '') + { '' } +