Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
bump test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
PPetka committed Jul 11, 2023
1 parent fb8f2dc commit e532431
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class DataRepositoryTest {
.test()
.assertComplete()

verifyZeroInteractions(analyticsManager)
verifyNoMoreInteractions(analyticsManager)
}

@Test
Expand All @@ -124,6 +124,6 @@ class DataRepositoryTest {
.test()
.assertComplete()

verifyZeroInteractions(analyticsManager)
verifyNoMoreInteractions(analyticsManager)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class PairingUseCaseTest {

pairingUseCase.pair(address, pairingCode)

verifyZeroInteractions(dataRepository, dataRepository)
verifyNoMoreInteractions(dataRepository, dataRepository)
verify(pairingCompletedObserver).onChanged(false)
verify(rxWebSocketClient).dispose()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class ResetAppUseCaseTest {

resetAppUseCase.resetApp().subscribe()

verifyZeroInteractions(firebaseInstanceManager)
verifyNoMoreInteractions(firebaseInstanceManager)
}

@Test
Expand Down
12 changes: 6 additions & 6 deletions buildsystem/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ ext {

test = [
lifecycleExtensions: "androidx.arch.core:core-testing:$lifecycleVersion",
mockito : "org.mockito:mockito-core:3.1.0",
mockito : "org.mockito:mockito-core:5.4.0",
mockitoKotlin : "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0",
junit : "junit:junit:4.12",
threetenabp : 'org.threeten:threetenbp:1.3.2',
runner : 'androidx.test:runner:1.2.0',
rules : 'androidx.test:rules:1.2.0',
espresso : 'androidx.test.espresso:espresso-core:3.2.0',
junit : "junit:junit:4.13.2",
threetenabp : 'org.threeten:threetenbp:1.6.8',
runner : 'androidx.test:runner:1.5.2',
rules : 'androidx.test:rules:1.5.0',
espresso : 'androidx.test.espresso:espresso-core:3.5.1',
room : "androidx.room:room-testing:$roomVersion",
supportAnnotations : 'androidx.annotation:annotation:1.1.0',
]
Expand Down

0 comments on commit e532431

Please sign in to comment.