Specify integration library for glide

This commit is contained in:
Matthieu 2020-03-07 19:45:27 +01:00
parent ae4cba818e
commit f36b45ba15
2 changed files with 3 additions and 1 deletions

View File

@ -62,6 +62,8 @@ dependencies {
implementation ("com.github.bumptech.glide:glide:4.11.0") {
exclude group: "com.android.support"
}
implementation "com.github.bumptech.glide:okhttp-integration:4.11.0"
testImplementation "com.github.tomakehurst:wiremock-jre8:2.26.3"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
testImplementation 'junit:junit:4.13'

View File

@ -28,6 +28,6 @@ class ProfileTest {
@Test
fun testAccountNameTextView() {
onView(withId(R.id.button)).perform(click())
onView(withId(R.id.following)).check(matches(not(withText("Following"))))
onView(withId(R.id.following)).check(matches(withText("Following")))
}
}