public async Task UpdateAddressAttribute_ValidArgument_InvokeExpectedMethod()
        {
            await _service.UpdateAddressAttribute(new AddressAttribute());

            _repositoryMock.Verify(c => c.UpdateAsync(It.IsAny <AddressAttribute>()), Times.Once);
            _mediatorMock.Verify(c => c.Publish(It.IsAny <EntityUpdated <AddressAttribute> >(), default), Times.Once);
            _cacheMock.Verify(c => c.RemoveByPrefix(It.IsAny <string>(), It.IsAny <bool>()));
        }