Cet article décrit ** «Spring boot 2.2 ou supérieur, compatible avec JUnit 5» **. J'espère que ce sera utile aux fins suivantes!
--Java 8 ~ (Spring boot 2.2 et supérieur prend en charge Java 8 et 11)
--JUnit5 est la valeur par défaut de Spring boot 2.2 et supérieur --JUnit4 et JUnit5 sont fondamentalement incompatibles
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
-- @ RunWith
a été supprimé
--Correspondence ... Supprimé ou remplacé par @ ExtendWith
--La source d'importation de @ Test
a changé
--Avant la correspondance ... ʻimport org.junit.Test; --Après le support ... ʻimport org.junit.jupiter.api.Test;
-- @ Before
a été aboli
--Correspondence ... Remplacé par @ BeforeEach
ou @ BeforeAll
↓ Ceci est un site de référence
Recommended Posts