Created
January 23, 2018 21:36
-
-
Save eliasnogueira/e91ef1872020a4189389ee77820c06a9 to your computer and use it in GitHub Desktop.
Trecho de código das dependências do treinamento JUnit para Testadores
This file contains hidden or 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
<properties> | |
<junit.version>4.12</junit.version> | |
<junit.params.version>1.1.1</junit.params.version> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>${junit.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<!-- Dependencia para usar arquivos CSV como massa de dados --> | |
<dependency> | |
<groupId>pl.pragmatists</groupId> | |
<artifactId>JUnitParams</artifactId> | |
<version>${junit.params.version}</version> | |
</dependency> | |
</dependencies> | |
<!-- Par execucao dos testes via POM ou linha de comando pelo Manven --> | |
<build> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<version>2.20.1</version> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
</build> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment