Skip to content

Instantly share code, notes, and snippets.

@brettfazio
Created May 26, 2020 21:25
Show Gist options
  • Select an option

  • Save brettfazio/18ecfb23c77e79e7836cb75c5de5a120 to your computer and use it in GitHub Desktop.

Select an option

Save brettfazio/18ecfb23c77e79e7836cb75c5de5a120 to your computer and use it in GitHub Desktop.
@Test
fun logInFailure_test() {
val email = "cool@cool.com"
val password = "123_456"
Mockito.`when`(mAuth!!.signInWithEmailAndPassword(email, password))
.thenReturn(failureTask)
accountModel!!.logIn(email, password)
assert(logInResult == FAILURE)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment