Skip to content

Instantly share code, notes, and snippets.

@ProArun
Created August 19, 2023 13:25
Show Gist options
  • Save ProArun/6f53bd7097fd0270a71ce308579f0bb2 to your computer and use it in GitHub Desktop.
Save ProArun/6f53bd7097fd0270a71ce308579f0bb2 to your computer and use it in GitHub Desktop.
Unit Test 2
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest{
@Test
fun useAppContext(){
//Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.cheezycode.unittestingexample", appContext.packageName)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment