Skip to content

Commit

Permalink
BURN :: 오류 코드 일시적 비활성화 (
Browse files Browse the repository at this point in the history
  • Loading branch information
Daybreak312 committed Aug 20, 2024
1 parent 5822b32 commit 67140fd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ class CurrentRequestContextTests @Autowired constructor(
)
}

// 오류 발생. 일시적으로 비활성화
// @Test
@Test
fun 초기화되지_않은_상태에서_사용() {
init()
Assertions.assertThrows(NullPointerException::class.java) {
currentRequestContext.getCurrentRequest()
}
}

@Test
// 오류 발생. 일시적으로 비활성화
// @Test
fun 필터를_통해_초기화하고_사용() {
init()
val mockkRequest = mockk<HttpServletRequest>()
Expand Down

0 comments on commit 67140fd

Please sign in to comment.