()
| 583 | } |
| 584 | |
| 585 | @Test |
| 586 | public void testBaseDictWordTooLong() { |
| 587 | byte[] compressed = { |
| 588 | (byte) 0x1b, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x80, |
| 589 | (byte) 0xe3, (byte) 0xb4, (byte) 0x0d, (byte) 0x00, (byte) 0x00, (byte) 0x07, (byte) 0x5b, |
| 590 | (byte) 0x26, (byte) 0x31, (byte) 0x40, (byte) 0x02, (byte) 0x00, (byte) 0xe0, (byte) 0x4e, |
| 591 | (byte) 0x1b, (byte) 0x41, (byte) 0x02 |
| 592 | }; |
| 593 | checkSynth( |
| 594 | /* |
| 595 | * // Has an unmodified dictionary word that goes over the end of the |
| 596 | * // meta-block. Same as BaseDictWord, but with a shorter meta-block length. |
| 597 | * main_header |
| 598 | * metablock_header_easy: 1, 1 |
| 599 | * command_inscopy_easy: 0, 4 |
| 600 | * command_dist_easy: 1 |
| 601 | */ |
| 602 | compressed, |
| 603 | false, |
| 604 | "" |
| 605 | ); |
| 606 | } |
| 607 | |
| 608 | @Test |
| 609 | public void testBlockCountMessage() { |
nothing calls this directly
no test coverage detected