public void SetLengthThrows()
        {
            var stream = new FrameRequestStream();

            Assert.Throws <NotSupportedException>(() => stream.SetLength(0));
        }
        public void SetLengthThrows()
        {
            var stream = new FrameRequestStream(Mock.Of <IHttpBodyControlFeature>());

            Assert.Throws <NotSupportedException>(() => stream.SetLength(0));
        }