public void UpdateSellIn_Soap_SameValue()
        {
            Item item = new Soap();

            item.SellIn = 1;
            item.UpdateSellIn();
            Assert.AreEqual(1, item.SellIn);
        }