()
| 83 | } |
| 84 | |
| 85 | @Test |
| 86 | public void testBoolean() throws Exception{ |
| 87 | String myBoolean = "true"; |
| 88 | Boolean b = ps.getLoadCaster().bytesToBoolean(myBoolean.getBytes()); |
| 89 | assertEquals(Boolean.TRUE, b); |
| 90 | } |
| 91 | |
| 92 | @Test |
| 93 | public void testInteger() throws Exception{ |
nothing calls this directly
no test coverage detected