Ejemplo n.º 1
0
 /** @throws Exception */
 @Test
 public void testGetValue_null() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   rowData.put("hoge", null);
   rs.addRowData(rowData);
   rs.next();
   FloatType type = new FloatType();
   assertNull(type.getValue(rs, 1));
 }