()
| 111 | } |
| 112 | |
| 113 | @Test |
| 114 | public void testDouble() throws Exception{ |
| 115 | String myDouble = "0.1"; |
| 116 | Double d = ps.getLoadCaster().bytesToDouble(myDouble.getBytes()); |
| 117 | assertEquals(Double.valueOf(0.1), d); |
| 118 | } |
| 119 | |
| 120 | @Test |
| 121 | public void testDateTime() throws Exception{ |
nothing calls this directly
no test coverage detected