JUnit5
spring-web 라이브러리에 포함되어 있음
@AfterAll, @AfterEach
@BeforeAll, @BeforeEach
@Disabled
@DisplayName
@Nested :
@Test
@TestMethodOrder : @Order 사용
@RepeatedTest
@EnabledIf, @DisabledIf
@ParameterizedTest
예외 테스트 관련
@Test(expected = ...) : 특정 예외를 기대하는 테스트를 지정
확장 관련
@ExtendWith : JUnit 테스트 실행을 확장하기 위한 확장을 지정 // Mockito를 사용하여 모의 객체(Mock Objects)를 생성하고 관리
@InjectMocks
Spring Framework
Spring Boot 내장 라이브러리
의존성 주입
@Autowired
@Qualifier
@Primary