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 CompressorTest and is intended ///to contain all CompressorTest Unit Tests /// [TestClass] [Ignore] // placeholders only public class CompressorTest : TestBase { internal virtual Compressor CreateCompressor() { // TODO: Instantiate an appropriate concrete class. Compressor target = null; return target; } /// ///A test for Compress /// [TestMethod()] public void CompressTest() { Compressor target = CreateCompressor(); // TODO: Initialize to an appropriate value byte[] data = null; // TODO: Initialize to an appropriate value byte[] expected = null; // TODO: Initialize to an appropriate value byte[] actual; actual = target.Compress(data); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); } /// ///A test for Decompress /// [TestMethod()] public void DecompressTest() { Compressor target = CreateCompressor(); // TODO: Initialize to an appropriate value byte[] data = null; // TODO: Initialize to an appropriate value byte[] expected = null; // TODO: Initialize to an appropriate value byte[] actual; actual = target.Decompress(data); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); } /// ///A test for Dispose /// [TestMethod()] public void DisposeTest() { Compressor target = CreateCompressor(); // TODO: Initialize to an appropriate value target.Dispose(); Assert.Inconclusive("A method that does not return a value cannot be verified."); } /// ///A test for Init /// [TestMethod()] public void InitTest() { Compressor target = CreateCompressor(); // 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."); } } }