@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
'Language > Kotlin' 카테고리의 다른 글
[kotlin/mockk] mockStatic 해제하기 - clearStaticMockk (0) | 2022.01.26 |
---|---|
[Kotlin] Java Scripting API (JSR-223) (0) | 2019.10.19 |
Kotlin에서 Util 함수 작성하기 - Top-Level Functions (3) | 2019.10.14 |
[Kotlin] Generics - 공변성(covariant)과 반공변성(contravariant) (0) | 2019.10.05 |
Kotlin Infix Notation (중위 표기법) (0) | 2019.09.17 |
댓글