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));
}
@Test
public void testFloatInvoker() throws SecurityException, ClassNotFoundException, NoSuchMethodException, NumberFormatException, IOException {
InvokeForFloat il = new InvokeForFloat("java.lang.Float.valueOf", "String");