items[2] = factory.createStringValue("c");
context.getCurrentScope().declareVariable(
new ImmutableExpandedName("", "myVar"),
factory.createSequence(items));
Expression exp = compileExpression("$myVar=(\"a\",\"b\",\"c\")");
Value result = exp.evaluate(context);
assertTrue("Sequence comparison failed :" +
"'(\"a\",\"b\",\"c\")=(\"a\",\"d\")'",
((BooleanValue) result).asJavaBoolean());