()
| 83 | } |
| 84 | |
| 85 | @Test |
| 86 | public void testIntInvoker() throws SecurityException, ClassNotFoundException, NoSuchMethodException, NumberFormatException, IOException { |
| 87 | InvokeForInt il = new InvokeForInt("java.lang.Integer.valueOf", "String"); |
| 88 | Tuple t = tf_.newTuple(1); |
| 89 | String arg = "245"; |
| 90 | t.set(0, arg); |
| 91 | assertEquals(Integer.valueOf(arg), il.exec(t)); |
| 92 | } |
| 93 | |
| 94 | @Test |
| 95 | public void testArrayConversion() throws SecurityException, ClassNotFoundException, NoSuchMethodException, IOException { |
nothing calls this directly
no test coverage detected