Пример #1
0
        public void Frame_reads_char_position()
        {
            var value = (char)'D';

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

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