| 1234567891011121314151617181920212223242526272829303132333435363738 | using Microsoft.VisualStudio.TestTools.UnitTesting;using Renci.SshNet.Common;namespace Renci.SshNet.Tests.Classes.Common{    [TestClass]    public class ExtensionsTest_ToBigInteger2    {        [TestMethod]        public void ShouldNotAppendZero()        {            byte[] value = { 0x0a, 0x0d };            var actual = value.ToBigInteger2().ToByteArray(isBigEndian: true);            Assert.IsNotNull(actual);            Assert.AreEqual(2, actual.Length);            Assert.AreEqual(0x0a, actual[0]);            Assert.AreEqual(0x0d, actual[1]);        }        [TestMethod]        public void ShouldAppendZero()        {            byte[] value = { 0xff, 0x0a, 0x0d };            var actual = value.ToBigInteger2().ToByteArray(isBigEndian: true);            Assert.IsNotNull(actual);            Assert.AreEqual(4, actual.Length);            Assert.AreEqual(0x00, actual[0]);            Assert.AreEqual(0xff, actual[1]);            Assert.AreEqual(0x0a, actual[2]);            Assert.AreEqual(0x0d, actual[3]);        }    }}
 |