CipherInfoTest.cs 897 B

123456789101112131415161718192021222324252627
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Renci.SshNet.Common;
  3. using Renci.SshNet.Security.Cryptography;
  4. using Renci.SshNet.Tests.Common;
  5. using System;
  6. namespace Renci.SshNet.Tests.Classes
  7. {
  8. /// <summary>
  9. /// Holds information about key size and cipher to use
  10. /// </summary>
  11. [TestClass]
  12. public class CipherInfoTest : TestBase
  13. {
  14. /// <summary>
  15. ///A test for CipherInfo Constructor
  16. ///</summary>
  17. [TestMethod()]
  18. public void CipherInfoConstructorTest()
  19. {
  20. int keySize = 0; // TODO: Initialize to an appropriate value
  21. Func<byte[], byte[], Cipher> cipher = null; // TODO: Initialize to an appropriate value
  22. CipherInfo target = new CipherInfo(keySize, cipher);
  23. Assert.Inconclusive("TODO: Implement code to verify target");
  24. }
  25. }
  26. }