tests: fix mocks
Fix unimplemented mock methods.
This commit is contained in:
parent
3feee67388
commit
c0001e0a81
1 changed files with 4 additions and 0 deletions
|
@ -70,6 +70,10 @@ open class FakeMusicRepository : MusicRepository {
|
||||||
throw NotImplementedError()
|
throw NotImplementedError()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun renamePlaylist(playlist: Playlist, name: String) {
|
||||||
|
throw NotImplementedError()
|
||||||
|
}
|
||||||
|
|
||||||
override fun requestIndex(withCache: Boolean) {
|
override fun requestIndex(withCache: Boolean) {
|
||||||
throw NotImplementedError()
|
throw NotImplementedError()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue