String expected = "<?php echo $a, $b; ?>";
parseAndCompare(str, expected, new ICodeManiplator() {
public void manipulate(Program program) {
EchoStatement statement = (EchoStatement) program.statements()
.get(0);
statement.expressions().remove(2);
}
});
}
public void testDeleteEchoMiddle() throws Exception {