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

io.cucumber.plugin.event.DataTableArgument Maven / Gradle / Ivy

package io.cucumber.plugin.event;

import org.apiguardian.api.API;

import java.util.List;

/**
 * Represents a Gherkin data table argument.
 */
@API(status = API.Status.STABLE)
public interface DataTableArgument extends StepArgument {

    List> cells();

    int getLine();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy