···5555 Assertions.assertNotEquals(0, buffer.currentPosition, "buffer position should not be 0");
5656 buffer.currentPosition = 0;
5757 Assertions.assertEquals(input, buffer.getShortBE(), "getShortBE should be the same as putShortBE");
5858+ buffer.putShortBE(0x2801);
5959+ buffer.currentPosition--;
6060+ Assertions.assertEquals(256, buffer.getShortBE(), "expect big endian behavior");
5861 }
59626063