()
| 97 | } |
| 98 | |
| 99 | @Test |
| 100 | public void testLong() throws Exception{ |
| 101 | String myLong = "1"; |
| 102 | Long l = ps.getLoadCaster().bytesToLong(myLong.getBytes()); |
| 103 | assertEquals(Long.valueOf(1L), l); |
| 104 | } |
| 105 | |
| 106 | @Test |
| 107 | public void testFloat() throws Exception{ |
nothing calls this directly
no test coverage detected