Home
last modified time | relevance | path

Searched refs:footerButton (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/biometrics/face/
DFaceEnrollEducationTest.java153 FooterButton footerButton = footer.getPrimaryButton(); in testFaceEnrollEducation_showFooterPrimaryButton() local
155 assertThat(footerButton.getVisibility()).isEqualTo(View.VISIBLE); in testFaceEnrollEducation_showFooterPrimaryButton()
156 assertThat(footerButton.getText().toString()).isEqualTo( in testFaceEnrollEducation_showFooterPrimaryButton()
164 FooterButton footerButton = footer.getSecondaryButton(); in testFaceEnrollEducation_showFooterSecondaryButton() local
166 assertThat(footerButton.getVisibility()).isEqualTo(View.VISIBLE); in testFaceEnrollEducation_showFooterSecondaryButton()
167 assertThat(footerButton.getText().toString()).isEqualTo(mContext.getString( in testFaceEnrollEducation_showFooterSecondaryButton()
DFaceEnrollIntroductionTest.java424 FooterButton footerButton = footer.getPrimaryButton(); in testFaceEnrollIntroduction_showFooterPrimaryButton() local
426 assertThat(footerButton).isNotNull(); in testFaceEnrollIntroduction_showFooterPrimaryButton()
427 assertThat(footerButton.getVisibility()).isEqualTo(View.VISIBLE); in testFaceEnrollIntroduction_showFooterPrimaryButton()
428 assertThat(footerButton.getText().toString()).isEqualTo( in testFaceEnrollIntroduction_showFooterPrimaryButton()
436 FooterButton footerButton = footer.getSecondaryButton(); in testFaceEnrollIntroduction_footerSecondaryButtonWhenCanEnroll() local
440 assertThat(footerButton.getVisibility()).isEqualTo( in testFaceEnrollIntroduction_footerSecondaryButtonWhenCanEnroll()
445 assertThat(footerButton.getVisibility()).isEqualTo(View.VISIBLE); in testFaceEnrollIntroduction_footerSecondaryButtonWhenCanEnroll()
459 FooterButton footerButton = footer.getSecondaryButton(); in testFaceEnrollIntroduction_footerSecondaryButtonWhenMaxEnroll() local
462 assertThat(footerButton.getVisibility()).isEqualTo(View.INVISIBLE); in testFaceEnrollIntroduction_footerSecondaryButtonWhenMaxEnroll()
466 assertThat(footerButton.getVisibility()).isEqualTo(View.INVISIBLE); in testFaceEnrollIntroduction_footerSecondaryButtonWhenMaxEnroll()
/packages/apps/Settings/src/com/android/settings/biometrics/face/
DFaceEnrollEducation.java156 final FooterButton footerButton = new FooterButton.Builder(this) in onCreate() local
171 mFooterBarMixin.setPrimaryButton(footerButton); in onCreate()