//코루틴
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-reactor:1.9.0'
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0' //테스트용의존성,runtest같은거
최신버전은 https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-test/ 여기서 확인하고,뒤에 1.9.0만 다 바꿔주면됨
'코틀린' 카테고리의 다른 글
코루틴 테스트시 mockMvc에서 response가 비어있을때 (2) | 2024.11.02 |
---|---|
코틀린에서 sam인터페이스를 람다로 구현이 안될때 (0) | 2024.07.19 |
코틀린에서 An annotation can't be used as the annotations argument 에러가 나올때 (0) | 2024.02.08 |
코틀린의 이진탐색 (1) | 2024.01.05 |