| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | using Renci.SshNet.Common;using Microsoft.VisualStudio.TestTools.UnitTesting;using System;using System.Runtime.Serialization;using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests.Classes.Common{    /// <summary>    ///This is a test class for SshExceptionTest and is intended    ///to contain all SshExceptionTest Unit Tests    ///</summary>    [TestClass()]    public class SshExceptionTest : TestBase    {        /// <summary>        ///A test for SshException Constructor        ///</summary>        [TestMethod()]        public void SshExceptionConstructorTest()        {            SshException target = new SshException();            Assert.Inconclusive("TODO: Implement code to verify target");        }        /// <summary>        ///A test for SshException Constructor        ///</summary>        [TestMethod()]        public void SshExceptionConstructorTest1()        {            string message = string.Empty; // TODO: Initialize to an appropriate value            SshException target = new SshException(message);            Assert.Inconclusive("TODO: Implement code to verify target");        }        /// <summary>        ///A test for SshException Constructor        ///</summary>        [TestMethod()]        public void SshExceptionConstructorTest2()        {            string message = string.Empty; // TODO: Initialize to an appropriate value            Exception inner = null; // TODO: Initialize to an appropriate value            SshException target = new SshException(message, inner);            Assert.Inconclusive("TODO: Implement code to verify target");        }        /// <summary>        ///A test for GetObjectData        ///</summary>        [TestMethod()]        [Ignore] // placeholder for actual test        public void GetObjectDataTest()        {            SshException target = new SshException(); // TODO: Initialize to an appropriate value            SerializationInfo info = null; // TODO: Initialize to an appropriate value            StreamingContext context = new StreamingContext(); // TODO: Initialize to an appropriate value            target.GetObjectData(info, context);            Assert.Inconclusive("A method that does not return a value cannot be verified.");        }    }}
 |