Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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