public void Test_0_plus_0()
        {
            var byteResult = Arithmetics.AddByte(new Byte(0), new Byte(0), false);

            byteResult.ToInt16().Should().Be(0);
        }
        public void Test_255_plus_255()
        {
            var byteResult = Arithmetics.AddByte(new Byte(255), new Byte(255), false);

            byteResult.ToInt16().Should().Be(510);
        }