assertThat(m, is(equalTo(expected)));
}
@Test
public void plus_plus_parses_correctly_combined_with_assignment_and_receiver() {
Message m = parse("foo x = fox a++");
Message expected = msg("foo", msg("=", PersistentList.create(Arrays.asList(msg("x"), msg("fox", msg("++", PersistentList.create(Arrays.asList(msg("a")))))))));
assertThat(m, is(equalTo(expected)));
}