MethodSignature sig = new MethodSignature(Modifier.PUBLIC, "void", "myMethod", new String[]
{ MARKUP_WRITER_CLASS_NAME }, null);
MethodInvocationBuilder invoker = new MethodInvocationBuilder();
assertEquals(invoker.buildMethodInvocation(sig, transformation), "myMethod(null)");
verify();
}
@Test