()
| 107 | } |
| 108 | |
| 109 | @Test |
| 110 | public void testDoubleInvoker() throws SecurityException, ClassNotFoundException, NoSuchMethodException, NumberFormatException, IOException { |
| 111 | InvokeForDouble il = new InvokeForDouble("java.lang.Double.valueOf", "String"); |
| 112 | Tuple t = tf_.newTuple(1); |
| 113 | String arg = "245"; |
| 114 | t.set(0, arg); |
| 115 | assertEquals(Double.valueOf(arg), il.exec(t)); |
| 116 | } |
| 117 | |
| 118 | @Test |
| 119 | public void testFloatInvoker() throws SecurityException, ClassNotFoundException, NoSuchMethodException, NumberFormatException, IOException { |
nothing calls this directly
no test coverage detected