assertNotNull("Debugging source can't be NULL.", source);
Breakpoint breakpoint = source.newBreakpoint();
breakpoint.setLineno(24);
breakpoint.sync();
String res = source.evaluate("$dbgp:session");
assertNull(res);
res = source.evaluate("let $seq := (98.5, 98.3, 98.9) return count($seq)");