APDUTest.UtilTest.StringStackTest.getRemaining C# (CSharp) Method

getRemaining() private method

private getRemaining ( ) : void
return void
        public void getRemaining()
        {
            StringStack SS = new StringStack("11223344556677889900");
            Assert.AreEqual("1122", SS.getBytes(2));
            Assert.AreEqual("33", SS.getByte());
            Assert.AreEqual("44", SS.getByte());
            Assert.AreEqual("556677", SS.getBytes(3));
            Assert.AreEqual("889900", SS.getRemaining());
        }