public void SetNameOfItem_UpdateNameOfItem_UpdatedNameOfItem()
        {
            //Arrange
            string  inputNameOfItem = "Camera";
            BagItem testBagItem     = new BagItem(inputNameOfItem, 1000, 2, true);

            //Act
            string updateNameOfItem = "Shoes";

            testBagItem.SetNameOfItem(updateNameOfItem);
            string resultNameOfItem = testBagItem.GetNameOfItem();

            //Assert
            Assert.AreEqual("Shoes", resultNameOfItem);
        }