본문 바로가기
Language/Kotlin

[kotlin/mockk] mockk로 LocalDatetime.now() mock 테스트

by 돈코츠라멘 2022. 1. 12.
@Test
fun test() {
    val testLocalDateTime = LocalDateTime.of(1993,1,10,11,57)

    mockkStatic(LocalDateTime::class)
    every { LocalDateTime.now() } returns testLocalDateTime

    LocalDateTime.now() shouldBe testLocalDateTime
}

mockkStatic : makes a static mock out of a class, or clears it if it was already transformed 출처 mockk.io

댓글