コード例 #1
0
ファイル: SetLength.cs プロジェクト: layomia/dotnet_runtime
        public void SetLengthThrowsForUnseekableFileStream()
        {
            string fileName = GetTestFilePath();

            using (FileStream fs = new UnseekableFileStream(fileName, FileMode.Create))
            {
                Assert.Throws <NotSupportedException>(() => fs.SetLength(1));
            }
        }