| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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
- {
- /// <summary>
- /// Implements RSA digital signature algorithm.
- /// </summary>
- [TestClass]
- public class RsaDigitalSignatureTest : TestBase
- {
- /// <summary>
- ///A test for RsaDigitalSignature Constructor
- ///</summary>
- [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");
- }
- /// <summary>
- ///A test for Dispose
- ///</summary>
- [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.");
- }
- }
- }
|