Skip to content

Instantly share code, notes, and snippets.

@ProArun
Last active August 19, 2023 13:36
Show Gist options
  • Save ProArun/6d57e026e443f037880cfc6da10c9ed8 to your computer and use it in GitHub Desktop.
Save ProArun/6d57e026e443f037880cfc6da10c9ed8 to your computer and use it in GitHub Desktop.
Unit Test 1
dependencies{
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
class ExampleUnitTest{
@Test
fun addition_isCorrect(){
assertEquals(expected:4,actual:2+2)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment