Add tests for Splitting an empty string with a non-empty separator, an non-empty string with an empty separator, and empty string and separator: ```cql ''.split(',') // { '' } 'ABC'.split('') // { 'A', 'B', 'C' } ''.split('') // { '' } ```
Add tests for Splitting an empty string with a non-empty separator, an non-empty string with an empty separator, and empty string and separator: