Fix file location
This commit is contained in:
parent
3f4d22528c
commit
9a63cdba38
7 changed files with 7 additions and 7 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
package org.fnives.test.showcase.di
|
package org.fnives.test.showcase.di
|
||||||
|
|
||||||
import org.fnives.test.showcase.core.di.koin.createCoreModule
|
import org.fnives.test.showcase.core.di.createCoreModule
|
||||||
import org.fnives.test.showcase.model.network.BaseUrl
|
import org.fnives.test.showcase.model.network.BaseUrl
|
||||||
import org.fnives.test.showcase.session.SessionExpirationListenerImpl
|
import org.fnives.test.showcase.session.SessionExpirationListenerImpl
|
||||||
import org.fnives.test.showcase.storage.LocalDatabase
|
import org.fnives.test.showcase.storage.LocalDatabase
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
package org.fnives.test.showcase.core.di.koin
|
package org.fnives.test.showcase.core.di
|
||||||
|
|
||||||
import org.fnives.test.showcase.core.content.AddContentToFavouriteUseCase
|
import org.fnives.test.showcase.core.content.AddContentToFavouriteUseCase
|
||||||
import org.fnives.test.showcase.core.content.ContentRepository
|
import org.fnives.test.showcase.core.content.ContentRepository
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
package org.fnives.test.showcase.core.login
|
package org.fnives.test.showcase.core.login
|
||||||
|
|
||||||
import org.fnives.test.showcase.core.di.koin.repositoryModule
|
import org.fnives.test.showcase.core.di.repositoryModule
|
||||||
import org.fnives.test.showcase.core.storage.UserDataLocalStorage
|
import org.fnives.test.showcase.core.storage.UserDataLocalStorage
|
||||||
import org.koin.core.context.loadKoinModules
|
import org.koin.core.context.loadKoinModules
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ package org.fnives.test.showcase.core.integration
|
||||||
|
|
||||||
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
||||||
import kotlinx.coroutines.test.runTest
|
import kotlinx.coroutines.test.runTest
|
||||||
import org.fnives.test.showcase.core.di.koin.createCoreModule
|
import org.fnives.test.showcase.core.di.createCoreModule
|
||||||
import org.fnives.test.showcase.core.integration.fake.FakeFavouriteContentLocalStorage
|
import org.fnives.test.showcase.core.integration.fake.FakeFavouriteContentLocalStorage
|
||||||
import org.fnives.test.showcase.core.integration.fake.FakeUserDataLocalStorage
|
import org.fnives.test.showcase.core.integration.fake.FakeUserDataLocalStorage
|
||||||
import org.fnives.test.showcase.core.login.IsUserLoggedInUseCase
|
import org.fnives.test.showcase.core.login.IsUserLoggedInUseCase
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ import org.fnives.test.showcase.core.content.AddContentToFavouriteUseCase
|
||||||
import org.fnives.test.showcase.core.content.FetchContentUseCase
|
import org.fnives.test.showcase.core.content.FetchContentUseCase
|
||||||
import org.fnives.test.showcase.core.content.GetAllContentUseCase
|
import org.fnives.test.showcase.core.content.GetAllContentUseCase
|
||||||
import org.fnives.test.showcase.core.content.RemoveContentFromFavouritesUseCase
|
import org.fnives.test.showcase.core.content.RemoveContentFromFavouritesUseCase
|
||||||
import org.fnives.test.showcase.core.di.koin.createCoreModule
|
import org.fnives.test.showcase.core.di.createCoreModule
|
||||||
import org.fnives.test.showcase.core.integration.fake.FakeFavouriteContentLocalStorage
|
import org.fnives.test.showcase.core.integration.fake.FakeFavouriteContentLocalStorage
|
||||||
import org.fnives.test.showcase.core.integration.fake.FakeUserDataLocalStorage
|
import org.fnives.test.showcase.core.integration.fake.FakeUserDataLocalStorage
|
||||||
import org.fnives.test.showcase.core.session.SessionExpirationListener
|
import org.fnives.test.showcase.core.session.SessionExpirationListener
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import kotlinx.coroutines.flow.toList
|
||||||
import kotlinx.coroutines.test.runTest
|
import kotlinx.coroutines.test.runTest
|
||||||
import org.fnives.test.showcase.core.content.FetchContentUseCase
|
import org.fnives.test.showcase.core.content.FetchContentUseCase
|
||||||
import org.fnives.test.showcase.core.content.GetAllContentUseCase
|
import org.fnives.test.showcase.core.content.GetAllContentUseCase
|
||||||
import org.fnives.test.showcase.core.di.koin.createCoreModule
|
import org.fnives.test.showcase.core.di.createCoreModule
|
||||||
import org.fnives.test.showcase.core.integration.fake.FakeFavouriteContentLocalStorage
|
import org.fnives.test.showcase.core.integration.fake.FakeFavouriteContentLocalStorage
|
||||||
import org.fnives.test.showcase.core.integration.fake.FakeUserDataLocalStorage
|
import org.fnives.test.showcase.core.integration.fake.FakeUserDataLocalStorage
|
||||||
import org.fnives.test.showcase.core.login.IsUserLoggedInUseCase
|
import org.fnives.test.showcase.core.login.IsUserLoggedInUseCase
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ package org.fnives.test.showcase.core.login
|
||||||
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
||||||
import kotlinx.coroutines.test.runTest
|
import kotlinx.coroutines.test.runTest
|
||||||
import org.fnives.test.showcase.core.content.ContentRepository
|
import org.fnives.test.showcase.core.content.ContentRepository
|
||||||
import org.fnives.test.showcase.core.di.koin.createCoreModule
|
import org.fnives.test.showcase.core.di.createCoreModule
|
||||||
import org.fnives.test.showcase.core.storage.UserDataLocalStorage
|
import org.fnives.test.showcase.core.storage.UserDataLocalStorage
|
||||||
import org.fnives.test.showcase.model.network.BaseUrl
|
import org.fnives.test.showcase.model.network.BaseUrl
|
||||||
import org.junit.jupiter.api.AfterEach
|
import org.junit.jupiter.api.AfterEach
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue