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

io.cucumber.plugin.event.TestStepStarted 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;

/**
 * A test step started event is broadcast when ever a step starts.
 * 

* A step can either be a {@link PickleStepTestStep} or a * {@link HookTestStep} depending on what step was executed. *

* Each test step started event is followed by an matching * {@link TestStepFinished} event for the same step.The order in * which these events may be expected is: * *

 *     [before hook,]* [[before step hook,]* test step, [after step hook,]*]+, [after hook,]*
 * 
* * @see PickleStepTestStep * @see HookTestStep */ @API(status = API.Status.STABLE) public final class TestStepStarted extends TestCaseEvent { private final TestStep testStep; public TestStepStarted(Instant timeInstant, TestCase testCase, TestStep testStep) { super(timeInstant, testCase); this.testStep = Objects.requireNonNull(testStep); } public TestStep getTestStep() { return testStep; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy