示例#1
0
        public void Frame_reads_short_position()
        {
            var value = (short)24157;

            _actualFrame = new MqFrame(new byte[3], MqFrameType.Last, _config);
            _actualFrame.Write(1, value);

            Assert.Equal(value, _actualFrame.ReadInt16(1));
        }