All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.galasa.extensions.mocks.MockHttpClientFactory Maven / Gradle / Ivy

There is a newer version: 0.37.0
Show newest version
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.extensions.mocks;

import org.apache.http.impl.client.CloseableHttpClient;

import dev.galasa.extensions.common.api.HttpClientFactory;

public class MockHttpClientFactory implements HttpClientFactory {
    private CloseableHttpClient clientToReturn ;

    public MockHttpClientFactory(CloseableHttpClient clientToReturn) {
        this.clientToReturn = clientToReturn;
    }

    @Override
    public CloseableHttpClient createClient() {
        return this.clientToReturn;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy