Test.
()
| 52 | |
| 53 | /** Test. */ |
| 54 | @Test public void test6() { |
| 55 | final int bl = 4096; |
| 56 | final byte[] bytes = new byte[bl]; |
| 57 | for(int b = 0; b < bl; b++) bytes[b] = (byte) (b & 0xFF); |
| 58 | run(bytes); |
| 59 | } |
| 60 | |
| 61 | /** Test. |
| 62 | * @throws Exception exception */ |