public async Task GetStandard_Returns_Valid_Standard()
        {
            var standardCode       = "547";
            var standardName       = "Broadcast and Media Systems Technician";
            var standardSectorCode = "11";

            var apiStandard = new Models.StandardModel
            {
                StandardCode       = standardCode,
                StandardName       = standardName,
                StandardSectorCode = standardSectorCode
            };

            _azureServiceMock
            .Setup(m => m.GetStandard(standardCode))
            .ReturnsAsync(apiStandard);

            var service = new StandardService(_azureServiceMock.Object, _searchCleaningServiceMock.Object);
            var result  = await service.GetStandard(standardCode);

            _azureServiceMock.Verify(m => m.GetStandard(standardCode), Times.Once);

            result.StandardCode.Should().Be(standardCode);
            result.StandardName.Should().Be(standardName);
            result.StandardSectorCode.Should().Be(standardSectorCode);
        }