* sequence member is the leftover bit.
*/
public void testRemainderX() throws Exception {
ExpressionContext context = createExpressionContext();
ExpressionFactory factory = context.getFactory();
Function tokenize = new TokenizeFunction();
Sequence sequence = createSequence(factory,
new String[]{"xxxxxxxxxx"});
Value pattern = factory.createStringValue("xxx");
Value retVal = tokenize.invoke(context,
new Value[]{sequence, pattern});
final Sequence retSeq = retVal.getSequence();
doSequenceEquality(retSeq, new String[]{"", "", "", "x"});