using Renci.SshNet.Compression; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using Renci.SshNet; using Renci.SshNet.Tests.Common; namespace Renci.SshNet.Tests.Classes.Compression { /// ///This is a test class for ZlibOpenSshTest and is intended ///to contain all ZlibOpenSshTest Unit Tests /// [TestClass] [Ignore] // placeholders only public class ZlibOpenSshTest : TestBase { /// ///A test for ZlibOpenSsh Constructor /// [TestMethod()] public void ZlibOpenSshConstructorTest() { ZlibOpenSsh target = new ZlibOpenSsh(); Assert.Inconclusive("TODO: Implement code to verify target"); } /// ///A test for Init /// [TestMethod()] public void InitTest() { ZlibOpenSsh target = new ZlibOpenSsh(); // TODO: Initialize to an appropriate value Session session = null; // TODO: Initialize to an appropriate value target.Init(session); Assert.Inconclusive("A method that does not return a value cannot be verified."); } /// ///A test for Name /// [TestMethod()] public void NameTest() { ZlibOpenSsh target = new ZlibOpenSsh(); // TODO: Initialize to an appropriate value string actual; actual = target.Name; Assert.Inconclusive("Verify the correctness of this test method."); } } }