public void SetLengthTest()
 {
     using var Stream = new PipelineStream();
     Assert.ThrowsException <NotSupportedException>(() => Stream.SetLength(0));
 }
Exemplo n.º 2
0
        public void TestSetLength()
        {
            var stream = new PipelineStream(256);

            stream.SetLength(0);
        }