Apache Maven
Wtyczka Maven Surefire
Szukaj…
Składnia
- test mvn
- mvn -Dtest = com.example.package.ExampleTest test
Testowanie klasy Java za pomocą JUnit i wtyczki Maven Surefire
Wtyczka Maven Surefire działa podczas fazy testowej procesu kompilacji Maven lub gdy test
jest określony jako cel Maven. Poniższa struktura katalogów i minimalny plik pom.xml
skonfigurują Maven do uruchomienia testu.
Struktura katalogów w katalogu głównym projektu:
─ project_root
├─ pom.xml
├─ src
│ ├─ main
│ │ └─ java
│ └─ test
│ └─ java
└─ target
└─ ...
zawartość pom.xml
:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>company-app</artifactId>
<version>0.0.1</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Utwórz plik o nazwie PlusTenTest.java
z następującą zawartością w katalogu projektu src/test/java/com/example/app
:
package com.example.app;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class PlusTenTest {
@Test
public void incrementTest() {
int result = PlusTen.increment(10);
assertEquals("PlusTen.increment(10) result", 20, result);
}
}
Adnotacja @Test
mówi JUnitowi, że powinien uruchomić incrementTest()
jako test podczas fazy test
procesu kompilacji Maven. Teraz utwórz PlusTen.java
w src/main/java/com/example/app
:
package com.example.app;
public class PlusTen {
public static int increment(int value) {
return value;
}
}
Uruchom test, otwierając wiersz polecenia, przechodząc do katalogu głównego projektu i wywołując następujące polecenie:
mvn -Dtest=com.example.app.PlusTenTest test
Maven skompiluje program i uruchomi metodę testową incrementTest()
w PlusTenTest
. Test zakończy się niepowodzeniem z następującym błędem:
...
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec <<< FAILURE! - in com.example.app.PlusTenTest
incrementTest(com.example.app.PlusTenTest) Time elapsed: 0.004 sec <<< FAILURE!
java.lang.AssertionError: PlusTen.increment(10) result expected:<20> but was:<10>
at org.junit.Assert.fail(Assert.java:88)
at org.junit.Assert.failNotEquals(Assert.java:743)
at org.junit.Assert.assertEquals(Assert.java:118)
at org.junit.Assert.assertEquals(Assert.java:555)
at com.example.app.PlusTenTest.incrementTest(PlusTenTest.java:12)
Results :
Failed tests:
PlusTenTest.incrementTest:12 PlusTen.increment(10) result expected:<20> but was:<10>
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.749 s
[INFO] Finished at: 2016-09-02T20:50:42-05:00
[INFO] Final Memory: 14M/209M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) on project app: There are test failures.
...
Wtyczka Maven Surefire tworzy katalog /target/surefire-reports/
katalogu twojego projektu zawierający pliki com.example.app.PlusTenTest.txt
i TEST-com.example.app.PlusTenTest.xml
które zawierają szczegóły błędu na początku powyższej produkcji.
Zgodnie z wzorcem PlusTen.java
zmodyfikuj PlusTen.java
aby metoda increments()
działała poprawnie:
package com.example.app;
public class PlusTen {
public static int increment(int value) {
return value + 10;
}
}
Ponownie wywołaj polecenie:
mvn -Dtest=com.example.app.PlusTenTest test
Test przechodzi:
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running com.example.app.PlusTenTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.753 s
[INFO] Finished at: 2016-09-02T20:55:42-05:00
[INFO] Final Memory: 17M/322M
[INFO] ------------------------------------------------------------------------
Gratulacje! Przetestowałeś klasę Java przy użyciu JUnit i wtyczki Maven Surefire.