public void ConsumerLookup_Existing_Test()
        {
            var agent = _agents.GetAgent(AgentLocation.MN);
            var consumerHistLookupData = _consumerHistLookupOperations.ConsumerHistoryLookup(agent.AgentId, agent.AgentSequence, true, SessionType.SEND);

            Assert.IsTrue(consumerHistLookupData.ConsumerHistoryLookupResp.Payload.SenderInfos.SenderInfo.Any(), $"Errors: {Environment.NewLine}{consumerHistLookupData.ConsumerHistoryLookupResp.Errors?.Log()}");
        }
        public GetCountryInfoResponse GetCountryInfo(string location, GetCountryInfoRequest req)
        {
            var agent = _agents.GetAgent(location);

            _agentConnectConfig.DecorateRequest(req);
            return(_testRunner.AgentConnect.GetCountryInfo(agent, req));
        }