From 9a63cdba380242598b000308a49644463c7dc05a Mon Sep 17 00:00:00 2001 From: Gergely Hegedus Date: Thu, 27 Jan 2022 22:46:46 +0200 Subject: [PATCH] Fix file location --- .../main/java/org/fnives/test/showcase/di/createAppModules.kt | 2 +- .../java/org/fnives/test/showcase/core/di/createCoreModule.kt | 2 +- .../java/org/fnives/test/showcase/core/login/LogoutUseCase.kt | 2 +- .../test/showcase/core/integration/AuthIntegrationTest.kt | 2 +- .../test/showcase/core/integration/ContentIntegrationTest.kt | 2 +- .../core/integration/SessionExpirationIntegrationTest.kt | 2 +- .../org/fnives/test/showcase/core/login/LogoutUseCaseTest.kt | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/src/main/java/org/fnives/test/showcase/di/createAppModules.kt b/app/src/main/java/org/fnives/test/showcase/di/createAppModules.kt index 4c20221..8d05715 100644 --- a/app/src/main/java/org/fnives/test/showcase/di/createAppModules.kt +++ b/app/src/main/java/org/fnives/test/showcase/di/createAppModules.kt @@ -1,6 +1,6 @@ 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.session.SessionExpirationListenerImpl import org.fnives.test.showcase.storage.LocalDatabase diff --git a/core/src/main/java/org/fnives/test/showcase/core/di/createCoreModule.kt b/core/src/main/java/org/fnives/test/showcase/core/di/createCoreModule.kt index 721b26f..d3b6bc5 100644 --- a/core/src/main/java/org/fnives/test/showcase/core/di/createCoreModule.kt +++ b/core/src/main/java/org/fnives/test/showcase/core/di/createCoreModule.kt @@ -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.ContentRepository diff --git a/core/src/main/java/org/fnives/test/showcase/core/login/LogoutUseCase.kt b/core/src/main/java/org/fnives/test/showcase/core/login/LogoutUseCase.kt index 961a666..d40d268 100644 --- a/core/src/main/java/org/fnives/test/showcase/core/login/LogoutUseCase.kt +++ b/core/src/main/java/org/fnives/test/showcase/core/login/LogoutUseCase.kt @@ -1,6 +1,6 @@ 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.koin.core.context.loadKoinModules diff --git a/core/src/test/java/org/fnives/test/showcase/core/integration/AuthIntegrationTest.kt b/core/src/test/java/org/fnives/test/showcase/core/integration/AuthIntegrationTest.kt index c1afe1d..88129df 100644 --- a/core/src/test/java/org/fnives/test/showcase/core/integration/AuthIntegrationTest.kt +++ b/core/src/test/java/org/fnives/test/showcase/core/integration/AuthIntegrationTest.kt @@ -2,7 +2,7 @@ package org.fnives.test.showcase.core.integration import kotlinx.coroutines.ExperimentalCoroutinesApi 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.FakeUserDataLocalStorage import org.fnives.test.showcase.core.login.IsUserLoggedInUseCase diff --git a/core/src/test/java/org/fnives/test/showcase/core/integration/ContentIntegrationTest.kt b/core/src/test/java/org/fnives/test/showcase/core/integration/ContentIntegrationTest.kt index 068ed08..42798a8 100644 --- a/core/src/test/java/org/fnives/test/showcase/core/integration/ContentIntegrationTest.kt +++ b/core/src/test/java/org/fnives/test/showcase/core/integration/ContentIntegrationTest.kt @@ -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.GetAllContentUseCase 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.FakeUserDataLocalStorage import org.fnives.test.showcase.core.session.SessionExpirationListener diff --git a/core/src/test/java/org/fnives/test/showcase/core/integration/SessionExpirationIntegrationTest.kt b/core/src/test/java/org/fnives/test/showcase/core/integration/SessionExpirationIntegrationTest.kt index 6dcca45..5ef2ada 100644 --- a/core/src/test/java/org/fnives/test/showcase/core/integration/SessionExpirationIntegrationTest.kt +++ b/core/src/test/java/org/fnives/test/showcase/core/integration/SessionExpirationIntegrationTest.kt @@ -7,7 +7,7 @@ import kotlinx.coroutines.flow.toList import kotlinx.coroutines.test.runTest import org.fnives.test.showcase.core.content.FetchContentUseCase 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.FakeUserDataLocalStorage import org.fnives.test.showcase.core.login.IsUserLoggedInUseCase diff --git a/core/src/test/java/org/fnives/test/showcase/core/login/LogoutUseCaseTest.kt b/core/src/test/java/org/fnives/test/showcase/core/login/LogoutUseCaseTest.kt index 230ee1b..32f697e 100644 --- a/core/src/test/java/org/fnives/test/showcase/core/login/LogoutUseCaseTest.kt +++ b/core/src/test/java/org/fnives/test/showcase/core/login/LogoutUseCaseTest.kt @@ -3,7 +3,7 @@ package org.fnives.test.showcase.core.login import kotlinx.coroutines.ExperimentalCoroutinesApi import kotlinx.coroutines.test.runTest 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.model.network.BaseUrl import org.junit.jupiter.api.AfterEach