Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dileep17/cucumbermvn
Spike cucumber with Maven
https://github.com/dileep17/cucumbermvn
Last synced: 14 days ago
JSON representation
Spike cucumber with Maven
- Host: GitHub
- URL: https://github.com/dileep17/cucumbermvn
- Owner: Dileep17
- Created: 2019-12-26T17:12:50.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T18:28:34.000Z (about 4 years ago)
- Last Synced: 2024-11-05T10:59:54.189Z (2 months ago)
- Language: Java
- Size: 6.45 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Run tests using
```
mvn test
```Find reports at
```
target/cucumber/cucumber-html-reports/overview-features.html
```#### Dependency Injection
As we used `cucumber-picocontainer`, injecting the classes per is taken care by pico.
For parallel execution With surefire, a new singleton will be injected.#### Parallel execution
This is take care by maven surefire plugin with below config in the pom.xml
```
org.apache.maven.plugins
maven-surefire-plugin
2.22.0
methods
true
```PENDING
1. TAGS - Done
`mvn test -Dcucumber.options='--tags "@simple"'`
Above runs only features & scenarios that are tagged as @simple
2. Project related info for reports - Done
project name is added to cucumber-reporting.properties
3. Gradle file with parallel execution