Пример #1
0
        public void TestWriteValueByBitIndex()
        {
            BWriter bw = new BWriter(8);

            bw.WriteValueByBitIndex <bool>(42, true, 1);
            byte[] res = bw.GetData();
            res[5].Should().Be(4);
            bw.WriteValueByBitIndex <byte>(55, 0b10110111, 7);
            res = bw.GetData();
            res[6].Should().Be(0x80);
            res[7].Should().Be(0x1b);
        }
Пример #2
0
        public void TestFunction()
        {
            byte[]  message = new byte[] { 0x01, 0x12, 0x34, 0x56, 0x78, 0b10101010, 0b11100100, (byte)'S', (byte)'u', (byte)'c', (byte)'c', (byte)'e', (byte)'s', (byte)'s', };
            BWriter bw      = new BWriter(message.Length);

            bw.WriteValueByByteIndex <byte>(0, 0x01);
            bw.WriteValueByByteIndex <int>(1, 0x12345678);
            for (int i = 0; i < 8; ++i)
            {
                bw.WriteValueByBitIndex <bool>(5, i, i % 2 == 1, 1);
            }
            for (byte i = 0; i < 4; ++i)
            {
                bw.WriteValueByBitIndex <byte>(6, 2 * i, i, 2);
            }
            bw.WriteStringByByteIndex(7, "Success", 7);
            bw.GetData().Should().BeEquivalentTo(message);
        }