| 12345678910111213141516171819202122232425262728293031323334 | using Microsoft.VisualStudio.TestTools.UnitTesting;using Renci.SshNet.Security;using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests.Classes.Security{    /// <summary>    ///This is a test class for AlgorithmTest and is intended    ///to contain all AlgorithmTest Unit Tests    ///</summary>    [TestClass()]    public class AlgorithmTest : TestBase    {        internal virtual Algorithm CreateAlgorithm()        {            // TODO: Instantiate an appropriate concrete class.            Algorithm target = null;            return target;        }        /// <summary>        ///A test for Name        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void NameTest()        {            Algorithm target = CreateAlgorithm(); // TODO: Initialize to an appropriate value            string actual;            actual = target.Name;            Assert.Inconclusive("Verify the correctness of this test method.");        }    }}
 |