Skip to content

Instantly share code, notes, and snippets.

@cdmunoz
Created May 17, 2020 22:00
Show Gist options
  • Save cdmunoz/ce2d3766d0288854a04659d4d25dd693 to your computer and use it in GitHub Desktop.
Save cdmunoz/ce2d3766d0288854a04659d4d25dd693 to your computer and use it in GitHub Desktop.
Place this class within main package structure, not androidTest packages
package co.cdmunoz.nasaroverphotos.utils.test
import androidx.test.espresso.idling.CountingIdlingResource
object EspressoIdlingResource {
private const val RESOURCE = "GLOBAL"
@JvmField
val countingIdlingResource = CountingIdlingResource(RESOURCE)
fun increment() = countingIdlingResource.increment()
fun decrement() {
if (!countingIdlingResource.isIdleNow) {
countingIdlingResource.decrement()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment