| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | using Renci.SshNet.Sftp;using Microsoft.VisualStudio.TestTools.UnitTesting;using System;using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests{    /// <summary>    ///This is a test class for SftpFileSytemInformationTest and is intended    ///to contain all SftpFileSytemInformationTest Unit Tests    ///</summary>    [TestClass()]    public class SftpFileSytemInformationTest : TestBase    {        /// <summary>        ///A test for IsReadOnly        ///</summary>        [TestMethod()]        public void IsReadOnlyTest()        {            ulong bsize = 0; // TODO: Initialize to an appropriate value            ulong frsize = 0; // TODO: Initialize to an appropriate value            ulong blocks = 0; // TODO: Initialize to an appropriate value            ulong bfree = 0; // TODO: Initialize to an appropriate value            ulong bavail = 0; // TODO: Initialize to an appropriate value            ulong files = 0; // TODO: Initialize to an appropriate value            ulong ffree = 0; // TODO: Initialize to an appropriate value            ulong favail = 0; // TODO: Initialize to an appropriate value            ulong sid = 0; // TODO: Initialize to an appropriate value            ulong flag = 0; // TODO: Initialize to an appropriate value            ulong namemax = 0; // TODO: Initialize to an appropriate value            SftpFileSytemInformation target = new SftpFileSytemInformation(bsize, frsize, blocks, bfree, bavail, files, ffree, favail, sid, flag, namemax); // TODO: Initialize to an appropriate value            bool actual;            actual = target.IsReadOnly;            Assert.Inconclusive("Verify the correctness of this test method.");        }        /// <summary>        ///A test for SupportsSetUid        ///</summary>        [TestMethod()]        public void SupportsSetUidTest()        {            ulong bsize = 0; // TODO: Initialize to an appropriate value            ulong frsize = 0; // TODO: Initialize to an appropriate value            ulong blocks = 0; // TODO: Initialize to an appropriate value            ulong bfree = 0; // TODO: Initialize to an appropriate value            ulong bavail = 0; // TODO: Initialize to an appropriate value            ulong files = 0; // TODO: Initialize to an appropriate value            ulong ffree = 0; // TODO: Initialize to an appropriate value            ulong favail = 0; // TODO: Initialize to an appropriate value            ulong sid = 0; // TODO: Initialize to an appropriate value            ulong flag = 0; // TODO: Initialize to an appropriate value            ulong namemax = 0; // TODO: Initialize to an appropriate value            SftpFileSytemInformation target = new SftpFileSytemInformation(bsize, frsize, blocks, bfree, bavail, files, ffree, favail, sid, flag, namemax); // TODO: Initialize to an appropriate value            bool actual;            actual = target.SupportsSetUid;            Assert.Inconclusive("Verify the correctness of this test method.");        }    }}
 |