Added sqlite support and fixed some issues
This commit is contained in:
parent
78205d97af
commit
fcbaef3e76
26 changed files with 348 additions and 371 deletions
|
|
@ -48,6 +48,9 @@ public class DynamicByteArrayStreamTest {
|
|||
DynamicByteArrayStream out = new DynamicByteArrayStream();
|
||||
out.append(b);
|
||||
|
||||
assertEquals(b, out.getBytes());
|
||||
byte[] result = out.getBytes();
|
||||
for(int i=0; i<b.length; i++){
|
||||
assertEquals(b[i], result[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue