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

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

There is a newer version: 7.20.1
Show newest version
package io.cucumber.testng;

import io.cucumber.core.gherkin.Feature;

final class FeatureWrapperImpl implements FeatureWrapper {

    private final Feature feature;

    FeatureWrapperImpl(Feature feature) {
        this.feature = feature;
    }

    @Override
    public String toString() {
        return "\"" + feature.getName().orElse("Unknown") + "\"";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy