Skip to content

Instantly share code, notes, and snippets.

@izmajlowiczl
Created April 25, 2014 18:35
Show Gist options
  • Save izmajlowiczl/11298988 to your computer and use it in GitHub Desktop.
Save izmajlowiczl/11298988 to your computer and use it in GitHub Desktop.
Testing home button
@Test
public void homeButtonHidesKeyboard() {
final MenuItem item = mock(MenuItem.class);
when(item.getItemId()).thenReturn(android.R.id.home);
testedFragment.onOptionsItemSelected(item);
verify(keyboardHackerMock).hideKeyboardAndResetBottomPaddingFor(any(View.class));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment