-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Se actualiza build.gradle para hacer uso de la version 7.1 de gradle.…
… Por lo cual tambien se actualizo: README.md y los archivos relacionados con gradle wrapper. Tambien se actualizaron las versiones de las dependencias lo que ocasiono la modificacion de varios imports en las clases GitHubTestRunner.java y CreateRepositoryInGitHubStepDefinition.java
- Loading branch information
1 parent
11f79b8
commit 710befb
Showing
8 changed files
with
82 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#Fri Sep 25 20:12:02 COT 2020 | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-all.zip | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
src/test/java/co/com/yourcompany/certification/nameproject/runners/GitHubTestRunner.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
package co.com.yourcompany.certification.nameproject.runners; | ||
|
||
import cucumber.api.CucumberOptions; | ||
import cucumber.api.SnippetType; | ||
import io.cucumber.junit.CucumberOptions; | ||
import net.serenitybdd.cucumber.CucumberWithSerenity; | ||
import org.junit.runner.RunWith; | ||
|
||
@RunWith(CucumberWithSerenity.class) | ||
@CucumberOptions(features = "src/test/resources/features/create_repository.feature", | ||
glue = {"co.com.yourcompany.certification.nameproject.stepdefinitions"}, | ||
snippets = SnippetType.CAMELCASE) | ||
snippets = CucumberOptions.SnippetType.CAMELCASE) | ||
public class GitHubTestRunner { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters