14 lines
322 B
Kotlin
14 lines
322 B
Kotlin
|
package com.lagradost
|
||
|
|
||
|
import com.lagradost.cloudstreamtest.ProviderTester
|
||
|
import kotlinx.coroutines.test.runTest
|
||
|
import org.junit.Test
|
||
|
|
||
|
class CikavaIdeyaProviderTest {
|
||
|
|
||
|
@Test
|
||
|
fun testProvider() = runTest {
|
||
|
val providerTester = ProviderTester(CikavaIdeyaProvider())
|
||
|
providerTester.testAll()
|
||
|
}
|
||
|
}
|