| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | using System;using System.IO;using System.Reflection;using Microsoft.VisualStudio.TestTools.UnitTesting;namespace Renci.SshNet.Tests.Common{    [TestClass]    public abstract class TestBase    {        private static readonly Assembly ExecutingAssembly = Assembly.GetExecutingAssembly();        [TestInitialize]        public void Init()        {            OnInit();        }        [TestCleanup]        public void Cleanup()        {            OnCleanup();        }        protected virtual void OnInit()        {        }        protected virtual void OnCleanup()        {        }        /// <summary>        /// Creates the test file.        /// </summary>        /// <param name="fileName">Name of the file.</param>        /// <param name="size">Size in megabytes.</param>        protected void CreateTestFile(string fileName, int size)        {            using (var testFile = File.Create(fileName))            {                var random = new Random();                for (int i = 0; i < 1024 * size; i++)                {                    var buffer = new byte[1024];                    random.NextBytes(buffer);                    testFile.Write(buffer, 0, buffer.Length);                }            }        }        internal static Stream GetData(string name)        {            string resourceName = $"Renci.SshNet.Tests.Data.{name}";            return ExecutingAssembly.GetManifestResourceStream(resourceName)                ?? throw new ArgumentException($"Resource '{resourceName}' not found in assembly '{typeof(TestBase).Assembly.FullName}'.");        }    }}
 |