CipherInfoTest.cs 869 B

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