SftpDownloadAsyncResultTest.cs 1006 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. using Renci.SshNet.Sftp;
  4. using Renci.SshNet.Tests.Common;
  5. namespace Renci.SshNet.Tests.Classes.Sftp
  6. {
  7. /// <summary>
  8. ///This is a test class for SftpDownloadAsyncResultTest and is intended
  9. ///to contain all SftpDownloadAsyncResultTest Unit Tests
  10. ///</summary>
  11. [TestClass]
  12. public class SftpDownloadAsyncResultTest : TestBase
  13. {
  14. /// <summary>
  15. ///A test for SftpDownloadAsyncResult Constructor
  16. ///</summary>
  17. [TestMethod]
  18. [Ignore] // placeholder
  19. public void SftpDownloadAsyncResultConstructorTest()
  20. {
  21. AsyncCallback asyncCallback = null; // TODO: Initialize to an appropriate value
  22. object state = null; // TODO: Initialize to an appropriate value
  23. SftpDownloadAsyncResult target = new SftpDownloadAsyncResult(asyncCallback, state);
  24. Assert.Inconclusive("TODO: Implement code to verify target");
  25. }
  26. }
  27. }