assertEquals("foobarbaz", is.exec(tf_.newTuple(strings)));
}
@Test
public void testDoubleInvoker() throws SecurityException, ClassNotFoundException, NoSuchMethodException, NumberFormatException, IOException {
InvokeForDouble il = new InvokeForDouble("java.lang.Double.valueOf", "String");
Tuple t = tf_.newTuple(1);
String arg = "245";
t.set(0, arg);
assertEquals(Double.valueOf(arg), il.exec(t));
}