https://github.com/billmeyer/simple-vdc-java
https://github.com/billmeyer/simple-vdc-java
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/billmeyer/simple-vdc-java
- Owner: billmeyer
- Created: 2020-02-28T14:09:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-24T02:26:35.000Z (about 3 years ago)
- Last Synced: 2025-02-11T20:58:06.487Z (5 months ago)
- Language: Java
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sauce Demo Test Suite
To execute the full test suite, simply run:
$ mvn test
And each scenario will execute.## Scenario breakdown
|Feature|Scenario|Smoke Test|Regression Test|End to End|
|---|---|---|---|---|
|login|Verify valid users can sign in|Yes|Yes|No|
|login|Verify locked out user gets locked out message|No|Yes|No|
|login|Verify invalid users cannot sign in|No|Yes|No|
|orders|Place a single item in the shopping cart|Yes|Yes|No|
|orders|Place multiple items in the shopping cart|No|Yes|No|
|orders|Validate Order Totals|No|Yes|No|## Tags
Tags are defined to allow execution of specific Features and Scenarios.
__Example__: Execute smoke tests for tests related to `orders`:
$ mvn test "-Dcucumber.options=--tags '@orders and @smoke1'" -f pom.xml
__Example__: Execute regression tests for tests related to `login`:
$ mvn test "-Dcucumber.options=--tags '@login and @regression1'" -f pom.xml