├── .github └── workflows │ └── allure-report.yml ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── LICENSE ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src └── test ├── java └── com │ └── example │ └── cucumberjvm │ ├── CucumberTest.java │ └── steps │ ├── RestSteps.java │ └── WebSteps.java └── resources ├── allure.properties └── features ├── labels-rest.feature ├── labels-web.feature └── milestone-web.feature /.github/workflows/allure-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/.github/workflows/allure-report.yml -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/pom.xml -------------------------------------------------------------------------------- /src/test/java/com/example/cucumberjvm/CucumberTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/src/test/java/com/example/cucumberjvm/CucumberTest.java -------------------------------------------------------------------------------- /src/test/java/com/example/cucumberjvm/steps/RestSteps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/src/test/java/com/example/cucumberjvm/steps/RestSteps.java -------------------------------------------------------------------------------- /src/test/java/com/example/cucumberjvm/steps/WebSteps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/src/test/java/com/example/cucumberjvm/steps/WebSteps.java -------------------------------------------------------------------------------- /src/test/resources/allure.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/src/test/resources/allure.properties -------------------------------------------------------------------------------- /src/test/resources/features/labels-rest.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/src/test/resources/features/labels-rest.feature -------------------------------------------------------------------------------- /src/test/resources/features/labels-web.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/src/test/resources/features/labels-web.feature -------------------------------------------------------------------------------- /src/test/resources/features/milestone-web.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/cucumberjvm-junit4-maven/HEAD/src/test/resources/features/milestone-web.feature --------------------------------------------------------------------------------