()
| 116 | } |
| 117 | |
| 118 | @Test |
| 119 | public void testFloatInvoker() throws SecurityException, ClassNotFoundException, NoSuchMethodException, NumberFormatException, IOException { |
| 120 | InvokeForFloat il = new InvokeForFloat("java.lang.Float.valueOf", "String"); |
| 121 | Tuple t = tf_.newTuple(1); |
| 122 | String arg = "245.3"; |
| 123 | t.set(0, arg); |
| 124 | assertEquals(Float.valueOf(arg), il.exec(t)); |
| 125 | } |
| 126 | |
| 127 | public static String concatStrings(String str1, String str2) { |
| 128 | return str1.concat(str2); |
nothing calls this directly
no test coverage detected