Skip to content
5 changes: 5 additions & 0 deletions tests/cql/CqlStringOperatorsTest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,11 @@
<expression>Substring('ab', -1)</expression>
<output>null</output>
</test>
<test name="SubstringEmptyAnd0" version="1.0">
<capability code="string-operators" />
<expression>Substring('', 0)</expression>
Comment thread
brynrhodes marked this conversation as resolved.
<output>''</output>
</test>
<test name="SubstringAB0To1" version="1.0">
<capability code="string-operators" />
<expression>Substring('ab', 0, 1)</expression>
Expand Down
Loading