Proof read robolectric instruction set

This commit is contained in:
Alex Gabor 2022-02-04 15:32:27 +02:00
parent f7f168ad75
commit b6ff7abdd9
2 changed files with 16 additions and 16 deletions

View file

@ -1,7 +1,7 @@
package org.fnives.test.showcase.storage.favourite
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.runBlocking
import kotlinx.coroutines.test.runTest
import org.junit.After
import org.junit.Before
import org.junit.Test
@ -21,7 +21,7 @@ class CodeKataFavouriteContentLocalStorageInstrumentedTest {
/** GIVEN just created database WHEN querying THEN empty list is returned */
@Test
fun atTheStartOurDatabaseIsEmpty() = runBlocking {
fun atTheStartOurDatabaseIsEmpty() = runTest {
}
/** GIVEN content_id WHEN added to Favourite THEN it can be read out */