| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | using Renci.SshNet.Common;using Microsoft.VisualStudio.TestTools.UnitTesting;using System;using Renci.SshNet.Security;using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests.Classes.Common{    /// <summary>    ///This is a test class for HostKeyEventArgsTest and is intended    ///to contain all HostKeyEventArgsTest Unit Tests    ///</summary>    [TestClass()]    public class HostKeyEventArgsTest : TestBase    {        /// <summary>        ///A test for HostKeyEventArgs Constructor        ///</summary>        [TestMethod()]        public void HostKeyEventArgsConstructorTest()        {            KeyHostAlgorithm host = null; // TODO: Initialize to an appropriate value            HostKeyEventArgs target = new HostKeyEventArgs(host);            Assert.Inconclusive("TODO: Implement code to verify target");        }        /// <summary>        ///A test for CanTrust        ///</summary>        [TestMethod()]        public void CanTrustTest()        {            KeyHostAlgorithm host = null; // TODO: Initialize to an appropriate value            HostKeyEventArgs target = new HostKeyEventArgs(host); // TODO: Initialize to an appropriate value            bool expected = false; // TODO: Initialize to an appropriate value            bool actual;            target.CanTrust = expected;            actual = target.CanTrust;            Assert.AreEqual(expected, actual);            Assert.Inconclusive("Verify the correctness of this test method.");        }    }}
 |