()
| 90 | } |
| 91 | |
| 92 | @Test |
| 93 | public void testInteger() throws Exception{ |
| 94 | String myInteger = "1"; |
| 95 | Integer i = ps.getLoadCaster().bytesToInteger(myInteger.getBytes()); |
| 96 | assertEquals(Integer.valueOf(1), i); |
| 97 | } |
| 98 | |
| 99 | @Test |
| 100 | public void testLong() throws Exception{ |
nothing calls this directly
no test coverage detected