8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdd66f1 commit e22feefCopy full SHA for e22feef
tests/pulse/generated/Quickly added gherkin test case.spec.java
@@ -0,0 +1,22 @@
1
+package com.pulsedemo.steps;
2
+
3
+import org.junit.Assert;
4
5
+import cucumber.api.java.en.Given;
6
+import cucumber.api.java.en.Then;
7
+import cucumber.api.java.en.When;
8
9
+@Given("^Precond$")
10
+public void Precond throws Throwable {
11
+ throw new PendingException();
12
+}
13
14
+@When("^Step$")
15
+public void Step$ throws Throwable {
16
17
18
19
+@Then ("^Result$")
20
+public void Result throws Throwable {
21
+ assertEquals("Result", "");
22
0 commit comments