@Test
public void testParseMethodWithArgAndReturnType() {
final BinaryMethodNode _node;
_node = ((BinaryMethodNode) Parser.factory.parseMethod_("+ arg {String} {^String}^bar"));
assertTrue(st.gravel.support.jvm.ObjectExtensions.equals_(_node.factory(), BinaryMethodNode.factory));
assertEquals((String) "+ arg {String} {^String}\n\t^bar", (String) _node.prettySourceString());
assertTrue(_node.argument().type() != null);
assertTrue(_node.returnType() != null);
}
@Test