Akce
Testování¶
Důležité dependency pro JUnit 5 testy.
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
V této verzi přechod od "org.junit.Test" a "org.junit.jupiter.api.Before" na nové "org.junit.jupiter.api.Test" a "org.junit.jupiter.api.BeforeEach". Díky tomu zde už není problém v různých typech testů. Potřeba si to hlídat.
Aktualizováno uživatelem Václav Hrabík před asi 2 roky(ů) · 3 revizí