public class TestLobChunkInputStream extends TestCase {
public void testReadByteArray() throws Exception {
LobChunkProducer chunkProducer = new LobChunkProducer() {
Iterator<LobChunk> chuncks = Arrays.asList(new LobChunk("hello ".getBytes(), false), new LobChunk("world".getBytes(), true)).iterator(); //$NON-NLS-1$ //$NON-NLS-2$
@Override
public LobChunk getNextChunk() throws IOException {