Assert.assertEquals(1, RowValue.get(4));
Assert.assertEquals(1001L, RowValue.get(3));
Assert.assertEquals(1.1, RowValue.get(2));
Assert.assertEquals("hello world 1", RowValue.get(1));
Assert.assertEquals("hello byte 1", RowValue.get(0).toString());
scanner.advance();
scanner.getKey(key);
Assert.assertEquals(key, new BytesWritable("k12".getBytes()));
scanner.getValue(RowValue);
Assert.assertEquals(false, RowValue.get(5));
Assert.assertEquals(2, RowValue.get(4));