https://github.com/borisskert/springboot-cucumber-wiremock-example
Example solution to use cucumber and wiremock in a SpringBoot environment
https://github.com/borisskert/springboot-cucumber-wiremock-example
bdd cucumber cucumber-jvm cucumber-spring spring-boot wiremock
Last synced: about 1 month ago
JSON representation
Example solution to use cucumber and wiremock in a SpringBoot environment
- Host: GitHub
- URL: https://github.com/borisskert/springboot-cucumber-wiremock-example
- Owner: borisskert
- License: apache-2.0
- Created: 2020-03-08T09:36:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-05T19:36:01.000Z (about 5 years ago)
- Last Synced: 2024-05-28T15:50:05.361Z (11 months ago)
- Topics: bdd, cucumber, cucumber-jvm, cucumber-spring, spring-boot, wiremock
- Language: Java
- Homepage:
- Size: 130 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Why this repository
This solution shows how a combination of Cucumber and WireMock could work in a SpringBoot environment.
# Build and run test
## Build
```shell script
$ ./mvnw clean compile
```## Run tests
```shell script
$ ./mvnw clean test
```## Build package
```shell script
$ ./mvnw clean package
```# License
This solution is released under the **Apache 2.0 License**.
Please see the [LICENSE](LICENSE.txt) file for more information.# Links
* [Cucumber](https://cucumber.io/)
* [WireMock](http://wiremock.org/)
* [SpringBoot](https://spring.io/projects/spring-boot)# Further links
* [JUnit Runner with @CucumberOptions @ testingneeds](https://testingneeds.wordpress.com/2015/09/15/junit-runner-with-cucumberoptions/)
* [Set Up and Run Cucumber Tests In Spring Boot Application @ medium.com](https://medium.com/@bcarunmail/set-up-and-run-cucumber-tests-in-spring-boot-application-d0c149d26220)
* [Cucumber Tests in Spring Boot with Dependency Injection @ thepracticaldeveloper](https://thepracticaldeveloper.com/2018/03/31/cucumber-tests-spring-boot-dependency-injection/)