forked from ctco/cukes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34e2910
commit 71cefad
Showing
12 changed files
with
44 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 5 additions & 7 deletions
12
cukes-rest-sample/src/main/java/lv/ctco/cukesrest/SampleApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 4 additions & 9 deletions
13
cukes-rest-sample/src/main/java/lv/ctco/cukesrest/common/InMemoryStorage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
cukes-rest-sample/src/main/java/lv/ctco/cukesrest/common/RestUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
cukes-rest-sample/src/main/java/lv/ctco/cukesrest/gadgets/DummyGadgetService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 5 additions & 7 deletions
12
cukes-rest-sample/src/main/java/lv/ctco/cukesrest/gadgets/GadgetResource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
cukes-rest-sample/src/main/java/lv/ctco/cukesrest/gadgets/dto/GadgetData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
cukes-rest-sample/src/main/java/lv/ctco/cukesrest/gadgets/dto/GadgetDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
cukes-rest-sample/src/test/java/lv/ctco/cukesrest/run/RunLoadrunnerGenerator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package lv.ctco.cukesrest.run; | ||
|
||
import cucumber.api.CucumberOptions; | ||
import lv.ctco.cukesrest.loadrunner.junit.CucumberLoadRunner; | ||
import org.junit.runner.RunWith; | ||
import cucumber.api.*; | ||
import lv.ctco.cukesrest.loadrunner.junit.*; | ||
import org.junit.runner.*; | ||
|
||
@RunWith(CucumberLoadRunner.class) | ||
@CucumberOptions( | ||
format = { "pretty" }, | ||
format = {"pretty"}, | ||
features = "classpath:features", | ||
glue = { "lv.ctco.cukesrest.api", "lv.ctco.cukesrest.loadrunner" }, | ||
glue = {"lv.ctco.cukesrest.api", "lv.ctco.cukesrest.loadrunner"}, | ||
strict = true | ||
) | ||
public class RunLoadrunnerGenerator {} |