()
| 104 | } |
| 105 | |
| 106 | @Test |
| 107 | public void testFloat() throws Exception{ |
| 108 | String myFloat = "0.1"; |
| 109 | Float f = ps.getLoadCaster().bytesToFloat(myFloat.getBytes()); |
| 110 | assertEquals(Float.valueOf(0.1f), f); |
| 111 | } |
| 112 | |
| 113 | @Test |
| 114 | public void testDouble() throws Exception{ |
nothing calls this directly
no test coverage detected