コード例 #1
0
ファイル: MapFragmentTest.java プロジェクト: haovn577/open
 @Test
 public void hideProgress_shouldEnableMap() throws Exception {
   FragmentTestUtil.startFragment(mapFragment);
   mapFragment.getView().findViewById(R.id.map).setClickable(false);
   mapFragment.hideProgress();
   assertThat(mapFragment.getView().findViewById(R.id.map)).isClickable();
 }
コード例 #2
0
ファイル: MapFragmentTest.java プロジェクト: haovn577/open
 @Test
 public void hideProgress_shouldHideProgressView() throws Exception {
   FragmentTestUtil.startFragment(mapFragment);
   mapFragment.showProgress();
   mapFragment.hideProgress();
   assertThat(mapFragment.getView().findViewById(R.id.progress)).isNotVisible();
 }