def __init__(self, config, cassette, request_json_builder = None):
'''
Initializes the test service given the configuration, but does not start the service.
'''
self.config = {
'proxy_host': 'localhost',
'proxy_port': 8888,
'destination_host': 'usermanagement.adobe.io',
}
self.config.update(config)
self.cassette = cassette
self.server = None
self.server_thread = None
self.request_json_builder = request_json_builder
评论列表
文章目录