Apache.NMS.Test.EndianBinaryReaderTest.testReadString32_2byteUTF8encoding C# (CSharp) Method

testReadString32_2byteUTF8encoding() private method

private testReadString32_2byteUTF8encoding ( ) : void
return void
        public void testReadString32_2byteUTF8encoding()
        {
            // Test data with 2-byte UT8 encoding.
            char[] expect = { '\u0000', '\u00C2', '\u00A9', '\u00C3', '\u00A6' };
            byte[] input = { 0x00, 0x00, 0x00, 0x0A, 0xC0, 0x80, 0xC3, 0x82, 0xC2, 0xA9, 0xC3, 0x83, 0xC2, 0xA6 };
            readString32Helper(input, expect);
        }