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

io.cucumber.testng.Pickle Maven / Gradle / Ivy

There is a newer version: 5.0.5-RC3
Show newest version
package io.cucumber.testng;

import io.cucumber.core.feature.CucumberPickle;
import org.apiguardian.api.API;

/**
 * Wraps CucumberPickle to avoid exposing it as part of the public api.
 */
@API(status = API.Status.STABLE)
public final class Pickle {

    private final CucumberPickle cucumberPickle;

    Pickle(CucumberPickle cucumberPickle) {
        this.cucumberPickle = cucumberPickle;
    }

    CucumberPickle getCucumberPickle() {
        return cucumberPickle;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy