示例#1
0
        internal virtual SshData CreateSshData()
        {
            // TODO: Instantiate an appropriate concrete class.
            SshData target = null;

            return(target);
        }
示例#2
0
        public void IsEndOfDataTest()
        {
            SshData target = CreateSshData(); // TODO: Initialize to an appropriate value
            bool    actual;

            actual = target.IsEndOfData;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
示例#3
0
        public void LoadTest()
        {
            SshData target = CreateSshData(); // TODO: Initialize to an appropriate value

            byte[] value = null;              // TODO: Initialize to an appropriate value
            target.Load(value);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
示例#4
0
        public void GetBytesTest()
        {
            SshData target = CreateSshData(); // TODO: Initialize to an appropriate value

            byte[] expected = null;           // TODO: Initialize to an appropriate value
            byte[] actual;
            actual = target.GetBytes();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }