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

io.cucumber.java.JavaBackendProviderService Maven / Gradle / Ivy

There is a newer version: 7.18.1
Show newest version
package io.cucumber.java;

import io.cucumber.core.backend.Backend;
import io.cucumber.core.backend.BackendProviderService;
import io.cucumber.core.backend.Container;
import io.cucumber.core.backend.Lookup;

import java.util.function.Supplier;

public final class JavaBackendProviderService implements BackendProviderService {

    @Override
    public Backend create(Lookup lookup, Container container, Supplier classLoaderSupplier) {
        return new JavaBackend(lookup, container, classLoaderSupplier);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy