LibreTube/app/src/androidTest/java/com/github/libretube/ExampleInstrumentedTest.kt

23 lines
677 B
Kotlin
Raw Normal View History

2022-02-01 21:22:06 +05:30
package com.github.libretube
2021-12-09 18:01:40 +05:30
2021-12-09 18:31:47 +05:30
import androidx.test.ext.junit.runners.AndroidJUnit4
2022-05-20 03:52:10 +05:30
import androidx.test.platform.app.InstrumentationRegistry
2022-05-21 13:32:04 +05:30
import org.junit.Assert.assertEquals
2021-12-09 18:01:40 +05:30
import org.junit.Test
import org.junit.runner.RunWith
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
2022-02-01 21:22:06 +05:30
assertEquals("com.github.libretube", appContext.packageName)
2021-12-09 18:01:40 +05:30
}
2022-05-20 03:52:10 +05:30
}