public async Task UpdateItem_ShouldBeSuccessfully()
        {
            IItemService itemService  = new ItemService(_itemRepository, _pirctureRepository, _mock_Options.Object);
            ItemDto      test_itemDto = new ItemDto {
                Id = Guid.NewGuid(), Name = "test", Price = 1, Status = ItemStatus.Actived, Unit = "kg"
            };
            UserDto test_currentUser = new UserDto {
            };
            var result = await itemService.AddOrUpdateItemAsync(test_currentUser, test_itemDto, true);

            Assert.Equal(RESTStatus.Success, result.Code);
        }