junit4가 아닌 버전을 사용해서 그런다.
testImplementation("org.junit.vintage:junit-vintage-engine") {
exclude group: "org.hamcrest", module: "hamcrest-core"
}
Junit4 > vintage-engine
Junit5 > jupiter-engine
junit4 -> junit5
@BeforeClass -> @BeforeAll
@Before -> @BeforeEach
로 변경되었다.
import static org.assertj.core.api.Assertions.assertThat;
'basic > Java' 카테고리의 다른 글
인텔리제이에서 서블릿 프로젝트 생성하는 방법 (0) | 2021.09.16 |
---|---|
Service와 Repository (0) | 2021.07.26 |
[Error] could not read document can not deserialize instance of java.util.ArrayList (0) | 2021.05.11 |
Missing URI template variable 'id' for method parameter of type Long (0) | 2021.05.10 |
@Transactional readOnly => cannot read simbol (0) | 2021.05.03 |