Wie man mit Mockk -Programmen gleichzeitige Testprogramme für Einheitstests erfolgtAndroid

Forum für diejenigen, die für Android programmieren
Anonymous
 Wie man mit Mockk -Programmen gleichzeitige Testprogramme für Einheitstests erfolgt

Post by Anonymous »

Ich habe einen Kotlin -Code geschrieben und möchte Unit -Tests dafür schreiben. Aber ich stellte fest, dass der von mir geschriebene Unit -Testcode, den ich geschrieben habe, immer noch eine 100% ige Zweigabdeckung abdecken kann. Was soll ich tun? < /P>
Kotlin Code: < /p>

Code: Select all

class MyRepository @Inject constructor(
@DefaultDispatcher private val dispatcher: CoroutineDispatcher,
@ApplicationScope private val scope: CoroutineScope,
val checkService:ICheckService = CheckService()
) {
fun fetchData(value: Int): String {
return runBlocking(dispatcher) {
suspendCoroutine { continuation ->
println(111)
scope.launch(dispatcher) {
println(222)
delay(100)
println(333)
if(checkService.check(value)){
println(444)
}
continuation.resume("result")
}
}
}
}
}

interface ICheckService {
suspend fun check(value:Int): Boolean
}

class CheckService:ICheckService{
override suspend fun check(value: Int): Boolean {
// mock delay
delay(300)

return value > 0
}

}
< /code>
UT -Code: < /p>
class MyRepositoryTest4 {
private lateinit var myRepository: MyRepository
private val dispatcher = StandardTestDispatcher()
private lateinit var scope: TestScope

@Before
fun setUp() {
scope = TestScope(dispatcher)
myRepository = MyRepository(dispatcher, scope)
}

@Test
fun testMyRepository1() = scope.runTest {

withContext(Dispatchers.IO){
myRepository.fetchData(-1)
}
}
@Test
fun testMyRepository2() = scope.runTest {

withContext(Dispatchers.IO){
myRepository.fetchData(1)
}
}
}
< /code>
Zusätzlich ändere ich das Objekt von < /p>
myRepository to myRepository=mockk (relaxed=true)
Die Abdeckung beträgt 0% und es wird kein Code ausgeführt. src = "https://i.sstatic.net/3k494idl.png"/>
Image

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post