tests #193

Merged
AmineB merged 7 commits from tests into master 2025-03-30 19:50:52 +00:00
Showing only changes of commit 24b9320d6d - Show all commits

View File

@ -71,6 +71,8 @@ class SourcesActivityTest {
fun deleteTheCreatedSource() {
onView(withText(sourceName)).check(matches(isDisplayed()))
onView(withId(R.id.deleteBtn)).perform(click())
onView(withText(R.string.confirm_delete_title)).check(matches(isDisplayed()))
onView(withId(android.R.id.button1)).perform(click())
onView(withText(sourceName)).check(doesNotExist())
}