public async Task With_valid_information_event_it_should_return_ok()
        {
            var result = await _sut.InformationReceived(_searchRequestKey, _fakePersonInformationEvent);

            _searchApiRequestServiceMock
            .Verify(x => x.AddEventAsync(It.Is <Guid>(x => x == _testGuid), It.IsAny <SSG_SearchApiEvent>(), It.IsAny <CancellationToken>()), Times.Once);

            Assert.IsInstanceOf(typeof(OkResult), result);
        }