blob: 6f30cba7367c41f18199cb1f0dc7fde798b5789d [file] [log] [blame]
Tests the splitText API arguments.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
PASS text.data is "abcdefg"
PASS text.splitText(4).data is "efg"
PASS text.data is "abcd"
PASS text.splitText() threw exception TypeError: Not enough arguments.
PASS text.splitText(999) threw exception IndexSizeError: The index is not in the allowed range..
PASS text.splitText(-1) threw exception IndexSizeError: The index is not in the allowed range..
PASS text.data is "abcd"
PASS text.splitText(-4294967294).data is "cd"
PASS text.data is "ab"
PASS successfullyParsed is true
TEST COMPLETE