Untitled
unknown
plain_text
a year ago
763 B
24
Indexable
package hellocucumber;
import static org.junit.jupiter.api.Assertions.assertEquals;
import io.cucumber.java.en.Given;
import io.cucumber.java.en.Then;
import io.cucumber.java.en.When;
class IsItFriday {
static String isItFriday(String today) {
return null;
}
}
public class StepDefinitions {
private String today;
private String actualAnswer;
@Given("today is Sunday")
public void todayIsSunday() {
today = "Sunday";
}
@When("I ask whether its Friday yet")
public void i_ask_whether_it_s_friday_yet() {
actualAnswer = IsItFriday.isItFriday(today);
}
@Then("I should be told {string}")
public void i_should_be_told(String expectAnswer) {
assertEquals(expectAnswer, actualAnswer);
}
}
Editor is loading...
Leave a Comment