public async Task GetListPropertises_ShouldCallPropertyService() { _mockService .Setup(_ => _.GetPropertiesAsync(It.IsAny <string>())) .ReturnsAsync(new List <StockportGovUK.NetStandard.Models.Verint.Address>()); await _controller.GetProperties("test-postcode"); _mockService .Verify(_ => _.GetPropertiesAsync(It.IsAny <string>()), Times.Once); }