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

io.cucumber.core.runner.Match Maven / Gradle / Ivy

The newest version!
package io.cucumber.core.runner;

import io.cucumber.core.stepexpression.Argument;

import java.util.List;

import static java.util.Objects.requireNonNull;

abstract class Match {

    private final List arguments;
    private final String location;

    Match(List arguments, String location) {
        requireNonNull(arguments, "argument may not be null");
        this.arguments = arguments;
        this.location = location;
    }

    public List getArguments() {
        return arguments;
    }

    public String getLocation() {
        return location;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy