public void AutomatedOperatorDiscoveryShouldHandleOperatorSelectionResponse()
        {
            var response = _responses["operator-selection"];
            var options  = new DiscoveryOptions();

            _restClient.NextExpectedResponse = response;

            var result = _discovery.StartAutomatedOperatorDiscovery(_config, REDIRECT_URL, options, null);

            Assert.IsNotNull(result);
            Assert.AreEqual(202, result.ResponseCode);
            Assert.IsNotNull(result.ResponseData);
            Assert.IsNotNull(result.ResponseData.links);
            Assert.IsFalse(result.Cached);
        }