assert false : t.toString();
}
}
public void testTypesWithNullArgument2() throws Throwable {
MethodCall mc;
mc=new MethodCall("bar", new Object[]{new String[]{"one", "two", "three"}, new Object[]{}},
new Class[]{String[].class, String.class});
try {
mc.invoke(target);
assert false: "we should not get here as there should be an argument mismatch exception";
}
catch(IllegalArgumentException ex) {
System.out.println("caught IllegalArgumentException - as expected");
}