using Renci.SshNet; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using Renci.SshNet.Tests.Common; namespace Renci.SshNet.Tests { /// ///This is a test class for CommandAsyncResultTest and is intended ///to contain all CommandAsyncResultTest Unit Tests /// [TestClass()] public class CommandAsyncResultTest : TestBase { /// ///A test for BytesSent /// [TestMethod()] public void BytesSentTest() { CommandAsyncResult target = new CommandAsyncResult(); // TODO: Initialize to an appropriate value int expected = 0; // TODO: Initialize to an appropriate value int actual; target.BytesSent = expected; actual = target.BytesSent; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); } /// ///A test for BytesReceived /// [TestMethod()] public void BytesReceivedTest() { CommandAsyncResult target = new CommandAsyncResult(); // TODO: Initialize to an appropriate value int expected = 0; // TODO: Initialize to an appropriate value int actual; target.BytesReceived = expected; actual = target.BytesReceived; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); } } }