我这里有一个函数,它从 JSONplaceholder api 获取帖子列表。如果想对此功能进行测试,我该怎么做,我需要什么,Mockito,JUnit
override fun getAllPosts(): Flowable<List<PostEntity>> {
return postsService.getPosts()
.flatMap { posts ->
Flowable.fromIterable(posts)
.take(10)
.toList().toFlowable()
}
}
@GET("/posts")
fun getPosts(): Flowable<List<PostEntity>>
请给我一些关于如何在 Android Studio 中进行测试的指示
谢谢R