using Microsoft.VisualStudio.TestTools.UnitTesting; using Renci.SshNet.Security; using Renci.SshNet.Security.Cryptography; using Renci.SshNet.Tests.Common; namespace Renci.SshNet.Tests.Classes.Security.Cryptography { /// /// Implements RSA digital signature algorithm. /// [TestClass] public class RsaDigitalSignatureTest : TestBase { /// ///A test for RsaDigitalSignature Constructor /// [TestMethod] [Ignore] // placeholder for actual test public void RsaDigitalSignatureConstructorTest() { RsaKey rsaKey = null; // TODO: Initialize to an appropriate value RsaDigitalSignature target = new RsaDigitalSignature(rsaKey); Assert.Inconclusive("TODO: Implement code to verify target"); } /// ///A test for Dispose /// [TestMethod] [Ignore] // placeholder for actual test public void DisposeTest() { RsaKey rsaKey = null; // TODO: Initialize to an appropriate value RsaDigitalSignature target = new RsaDigitalSignature(rsaKey); // TODO: Initialize to an appropriate value target.Dispose(); Assert.Inconclusive("A method that does not return a value cannot be verified."); } } }