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

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

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

import org.apiguardian.api.API;

import java.time.Instant;
import java.util.Objects;

@API(status = API.Status.STABLE)
public abstract class TestCaseEvent extends TimeStampedEvent {

    private final TestCase testCase;

    TestCaseEvent(Instant timeInstant, TestCase testCase) {
        super(timeInstant);
        this.testCase = Objects.requireNonNull(testCase);
    }

    public TestCase getTestCase() {
        return testCase;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy