Mock openAndTruncateStream instead of getStream in test
This commit is contained in:
parent
b21981a9c7
commit
e31a8ad7a2
|
@ -55,7 +55,7 @@ class ImportExportManagerTest {
|
||||||
`when`(sharedPreferences.all).thenReturn(expectedPreferences)
|
`when`(sharedPreferences.all).thenReturn(expectedPreferences)
|
||||||
|
|
||||||
val output = File.createTempFile("newpipe_", "")
|
val output = File.createTempFile("newpipe_", "")
|
||||||
`when`(storedFileHelper.stream).thenReturn(FileStream(output))
|
`when`(storedFileHelper.openAndTruncateStream()).thenReturn(FileStream(output))
|
||||||
ImportExportManager(fileLocator).exportDatabase(sharedPreferences, storedFileHelper)
|
ImportExportManager(fileLocator).exportDatabase(sharedPreferences, storedFileHelper)
|
||||||
|
|
||||||
val zipFile = ZipFile(output)
|
val zipFile = ZipFile(output)
|
||||||
|
|
Loading…
Reference in New Issue