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

cucumber.api.event.TestSourceRead Maven / Gradle / Ivy

There is a newer version: 7.18.1
Show newest version
package cucumber.api.event;

public final class TestSourceRead extends TimeStampedEvent {
    public final String uri;
    public final String source;

    public TestSourceRead(Long timeStamp, String uri, String source) {
        super(timeStamp);
        this.uri = uri;
        this.source = source;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy