Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions tests/cql/CqlStringOperatorsTest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@
<expression>LastPositionOf('hi', 'Say hi to Ohio!')</expression>
<output>11</output>
</test>
<test name="LastPositionOf3" version="1.0">
<capability code="string-operators" />
<expression>LastPositionOf('', 'Say hi to Ohio!')</expression>
<output>15</output>
</test>
</group>
<group name="Length" version="1.0">
<capability code="string-operators" />
Expand Down Expand Up @@ -266,6 +271,11 @@
<expression>PositionOf('c', 'ab')</expression>
<output>-1</output>
</test>
<test name="PositionOf3" version="1.0">
<capability code="string-operators" />
<expression>PositionOf('', 'Say hi to Ohio!')</expression>
<output>0</output>
</test>
</group>
<group name="ReplaceMatches" version="1.0">
<capability code="string-operators" />
Expand Down
Loading