9 lines
No EOL
286 B
Kotlin
9 lines
No EOL
286 B
Kotlin
package com.tangem.common.extensions
|
|
|
|
import androidx.test.platform.app.InstrumentationRegistry
|
|
|
|
object TestDataUtils {
|
|
fun getResourceString(resourceId: Int): String {
|
|
return InstrumentationRegistry.getInstrumentation().targetContext.resources.getString(resourceId)
|
|
}
|
|
} |