From c762f3144967b9a4fb0ff8840413987624626d87 Mon Sep 17 00:00:00 2001 From: Fabrice Lecomte Date: Tue, 18 Mar 2025 22:09:27 +0100 Subject: [PATCH] Move tests --- .../{ => query}/GameCommandRouteWebSocket.kt | 2 +- .../adapter/interfaceLayer/{ => query}/GameList.kt | 3 +-- .../interfaceLayer/{ => query}/ReadTheGameState.kt | 2 +- .../eventDemo/configuration/route/DeclareHttpRoutes.kt | 4 ++-- .../configuration/route/DeclareWebSocketsGameRoute.kt | 2 +- src/test/kotlin/eventDemo/{app => }/Helpers.kt | 2 +- .../{app => adapter/interfaceLayer}/query/AuthHelper.kt | 2 +- .../interfaceLayer}/query/GameListRouteTest.kt | 2 +- .../interfaceLayer}/query/GameSimulationTest.kt | 2 +- .../interfaceLayer}/query/GameStateRouteTest.kt | 2 +- .../interfaceLayer}/query/TestHttpClient.kt | 2 +- .../{app => business}/command/GameCommandHandlerTest.kt | 3 +-- .../{app => business}/command/GameCommandRunnerTest.kt | 2 +- .../command/command/ICantPlayCommandTest.kt | 2 +- .../command/command/IWantToJoinTheGameCommandTest.kt | 2 +- .../command/command/IWantToPlayCardCommandTest.kt | 2 +- .../command/command/IamReadyToPlayCommandTest.kt | 2 +- .../eventDemo/{app => business}/entity/DeckTest.kt | 9 +++------ .../{app => business}/entity/PlayerHandKtTest.kt | 2 +- .../{app => business}/entity/PlayersHandsTest.kt | 2 +- .../{app => business}/event/GameEventHandlerTest.kt | 2 +- .../event/projection/GameStateBuilderTest.kt | 2 +- .../event/projection/GameStateRepositoryTest.kt | 2 +- .../{app => business}/event/projection/GameStateTest.kt | 2 +- .../ProjectionSnapshotRepositoryInMemoryTest.kt | 2 +- 25 files changed, 28 insertions(+), 33 deletions(-) rename src/main/kotlin/eventDemo/adapter/interfaceLayer/{ => query}/GameCommandRouteWebSocket.kt (98%) rename src/main/kotlin/eventDemo/adapter/interfaceLayer/{ => query}/GameList.kt (89%) rename src/main/kotlin/eventDemo/adapter/interfaceLayer/{ => query}/ReadTheGameState.kt (96%) rename src/test/kotlin/eventDemo/{app => }/Helpers.kt (92%) rename src/test/kotlin/eventDemo/{app => adapter/interfaceLayer}/query/AuthHelper.kt (86%) rename src/test/kotlin/eventDemo/{app => adapter/interfaceLayer}/query/GameListRouteTest.kt (98%) rename src/test/kotlin/eventDemo/{app => adapter/interfaceLayer}/query/GameSimulationTest.kt (99%) rename src/test/kotlin/eventDemo/{app => adapter/interfaceLayer}/query/GameStateRouteTest.kt (98%) rename src/test/kotlin/eventDemo/{app => adapter/interfaceLayer}/query/TestHttpClient.kt (90%) rename src/test/kotlin/eventDemo/{app => business}/command/GameCommandHandlerTest.kt (96%) rename src/test/kotlin/eventDemo/{app => business}/command/GameCommandRunnerTest.kt (80%) rename src/test/kotlin/eventDemo/{app => business}/command/command/ICantPlayCommandTest.kt (75%) rename src/test/kotlin/eventDemo/{app => business}/command/command/IWantToJoinTheGameCommandTest.kt (77%) rename src/test/kotlin/eventDemo/{app => business}/command/command/IWantToPlayCardCommandTest.kt (76%) rename src/test/kotlin/eventDemo/{app => business}/command/command/IamReadyToPlayCommandTest.kt (76%) rename src/test/kotlin/eventDemo/{app => business}/entity/DeckTest.kt (94%) rename src/test/kotlin/eventDemo/{app => business}/entity/PlayerHandKtTest.kt (97%) rename src/test/kotlin/eventDemo/{app => business}/entity/PlayersHandsTest.kt (90%) rename src/test/kotlin/eventDemo/{app => business}/event/GameEventHandlerTest.kt (89%) rename src/test/kotlin/eventDemo/{app => business}/event/projection/GameStateBuilderTest.kt (99%) rename src/test/kotlin/eventDemo/{app => business}/event/projection/GameStateRepositoryTest.kt (99%) rename src/test/kotlin/eventDemo/{app => business}/event/projection/GameStateTest.kt (99%) rename src/test/kotlin/eventDemo/{app => business}/event/projection/ProjectionSnapshotRepositoryInMemoryTest.kt (99%) diff --git a/src/main/kotlin/eventDemo/adapter/interfaceLayer/GameCommandRouteWebSocket.kt b/src/main/kotlin/eventDemo/adapter/interfaceLayer/query/GameCommandRouteWebSocket.kt similarity index 98% rename from src/main/kotlin/eventDemo/adapter/interfaceLayer/GameCommandRouteWebSocket.kt rename to src/main/kotlin/eventDemo/adapter/interfaceLayer/query/GameCommandRouteWebSocket.kt index dbde565..a4aff7d 100644 --- a/src/main/kotlin/eventDemo/adapter/interfaceLayer/GameCommandRouteWebSocket.kt +++ b/src/main/kotlin/eventDemo/adapter/interfaceLayer/query/GameCommandRouteWebSocket.kt @@ -1,4 +1,4 @@ -package eventDemo.adapter.interfaceLayer +package eventDemo.adapter.interfaceLayer.query import eventDemo.business.command.GameCommandHandler import eventDemo.business.entity.GameId diff --git a/src/main/kotlin/eventDemo/adapter/interfaceLayer/GameList.kt b/src/main/kotlin/eventDemo/adapter/interfaceLayer/query/GameList.kt similarity index 89% rename from src/main/kotlin/eventDemo/adapter/interfaceLayer/GameList.kt rename to src/main/kotlin/eventDemo/adapter/interfaceLayer/query/GameList.kt index 81365ee..e165f08 100644 --- a/src/main/kotlin/eventDemo/adapter/interfaceLayer/GameList.kt +++ b/src/main/kotlin/eventDemo/adapter/interfaceLayer/query/GameList.kt @@ -1,4 +1,4 @@ -package eventDemo.adapter.interfaceLayer +package eventDemo.adapter.interfaceLayer.query import eventDemo.business.event.projection.gameList.GameListRepository import io.ktor.resources.Resource @@ -7,7 +7,6 @@ import io.ktor.server.auth.authenticate import io.ktor.server.resources.get import io.ktor.server.response.respond import io.ktor.server.routing.Route -import io.ktor.server.routing.get import kotlinx.serialization.Serializable @Serializable diff --git a/src/main/kotlin/eventDemo/adapter/interfaceLayer/ReadTheGameState.kt b/src/main/kotlin/eventDemo/adapter/interfaceLayer/query/ReadTheGameState.kt similarity index 96% rename from src/main/kotlin/eventDemo/adapter/interfaceLayer/ReadTheGameState.kt rename to src/main/kotlin/eventDemo/adapter/interfaceLayer/query/ReadTheGameState.kt index f1edcf4..3985bf1 100644 --- a/src/main/kotlin/eventDemo/adapter/interfaceLayer/ReadTheGameState.kt +++ b/src/main/kotlin/eventDemo/adapter/interfaceLayer/query/ReadTheGameState.kt @@ -1,4 +1,4 @@ -package eventDemo.adapter.interfaceLayer +package eventDemo.adapter.interfaceLayer.query import eventDemo.business.entity.GameId import eventDemo.business.event.projection.gameState.GameStateRepository diff --git a/src/main/kotlin/eventDemo/configuration/route/DeclareHttpRoutes.kt b/src/main/kotlin/eventDemo/configuration/route/DeclareHttpRoutes.kt index a8685eb..1fe1cf1 100644 --- a/src/main/kotlin/eventDemo/configuration/route/DeclareHttpRoutes.kt +++ b/src/main/kotlin/eventDemo/configuration/route/DeclareHttpRoutes.kt @@ -1,7 +1,7 @@ package eventDemo.configuration.route -import eventDemo.adapter.interfaceLayer.readGamesList -import eventDemo.adapter.interfaceLayer.readTheGameState +import eventDemo.adapter.interfaceLayer.query.readGamesList +import eventDemo.adapter.interfaceLayer.query.readTheGameState import io.ktor.server.application.Application import io.ktor.server.routing.routing import org.koin.ktor.ext.get diff --git a/src/main/kotlin/eventDemo/configuration/route/DeclareWebSocketsGameRoute.kt b/src/main/kotlin/eventDemo/configuration/route/DeclareWebSocketsGameRoute.kt index 7e18640..5297230 100644 --- a/src/main/kotlin/eventDemo/configuration/route/DeclareWebSocketsGameRoute.kt +++ b/src/main/kotlin/eventDemo/configuration/route/DeclareWebSocketsGameRoute.kt @@ -1,6 +1,6 @@ package eventDemo.configuration.route -import eventDemo.adapter.interfaceLayer.gameWebSocket +import eventDemo.adapter.interfaceLayer.query.gameWebSocket import eventDemo.business.command.GameCommandHandler import eventDemo.business.event.projection.projectionListener.PlayerNotificationListener import io.ktor.server.application.Application diff --git a/src/test/kotlin/eventDemo/app/Helpers.kt b/src/test/kotlin/eventDemo/Helpers.kt similarity index 92% rename from src/test/kotlin/eventDemo/app/Helpers.kt rename to src/test/kotlin/eventDemo/Helpers.kt index 2571474..cb98010 100644 --- a/src/test/kotlin/eventDemo/app/Helpers.kt +++ b/src/test/kotlin/eventDemo/Helpers.kt @@ -1,4 +1,4 @@ -package eventDemo.app +package eventDemo import eventDemo.business.entity.Card import eventDemo.business.entity.Deck diff --git a/src/test/kotlin/eventDemo/app/query/AuthHelper.kt b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/AuthHelper.kt similarity index 86% rename from src/test/kotlin/eventDemo/app/query/AuthHelper.kt rename to src/test/kotlin/eventDemo/adapter/interfaceLayer/query/AuthHelper.kt index d41f641..540057c 100644 --- a/src/test/kotlin/eventDemo/app/query/AuthHelper.kt +++ b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/AuthHelper.kt @@ -1,4 +1,4 @@ -package eventDemo.app.query +package eventDemo.adapter.interfaceLayer.query import eventDemo.business.entity.Player import eventDemo.configuration.ktor.makeJwt diff --git a/src/test/kotlin/eventDemo/app/query/GameListRouteTest.kt b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/GameListRouteTest.kt similarity index 98% rename from src/test/kotlin/eventDemo/app/query/GameListRouteTest.kt rename to src/test/kotlin/eventDemo/adapter/interfaceLayer/query/GameListRouteTest.kt index c2848da..d174dec 100644 --- a/src/test/kotlin/eventDemo/app/query/GameListRouteTest.kt +++ b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/GameListRouteTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.query +package eventDemo.adapter.interfaceLayer.query import eventDemo.business.entity.GameId import eventDemo.business.entity.Player diff --git a/src/test/kotlin/eventDemo/app/query/GameSimulationTest.kt b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/GameSimulationTest.kt similarity index 99% rename from src/test/kotlin/eventDemo/app/query/GameSimulationTest.kt rename to src/test/kotlin/eventDemo/adapter/interfaceLayer/query/GameSimulationTest.kt index 366f714..42f90a0 100644 --- a/src/test/kotlin/eventDemo/app/query/GameSimulationTest.kt +++ b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/GameSimulationTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.query +package eventDemo.adapter.interfaceLayer.query import eventDemo.business.command.GameCommandHandler import eventDemo.business.command.command.GameCommand diff --git a/src/test/kotlin/eventDemo/app/query/GameStateRouteTest.kt b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/GameStateRouteTest.kt similarity index 98% rename from src/test/kotlin/eventDemo/app/query/GameStateRouteTest.kt rename to src/test/kotlin/eventDemo/adapter/interfaceLayer/query/GameStateRouteTest.kt index 850434a..d732a1f 100644 --- a/src/test/kotlin/eventDemo/app/query/GameStateRouteTest.kt +++ b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/GameStateRouteTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.query +package eventDemo.adapter.interfaceLayer.query import eventDemo.business.entity.Card import eventDemo.business.entity.GameId diff --git a/src/test/kotlin/eventDemo/app/query/TestHttpClient.kt b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/TestHttpClient.kt similarity index 90% rename from src/test/kotlin/eventDemo/app/query/TestHttpClient.kt rename to src/test/kotlin/eventDemo/adapter/interfaceLayer/query/TestHttpClient.kt index 13bb1f5..a2940de 100644 --- a/src/test/kotlin/eventDemo/app/query/TestHttpClient.kt +++ b/src/test/kotlin/eventDemo/adapter/interfaceLayer/query/TestHttpClient.kt @@ -1,4 +1,4 @@ -package eventDemo.app.query +package eventDemo.adapter.interfaceLayer.query import eventDemo.configuration.ktor.defaultJsonSerializer import io.ktor.client.HttpClient import io.ktor.client.plugins.contentnegotiation.ContentNegotiation diff --git a/src/test/kotlin/eventDemo/app/command/GameCommandHandlerTest.kt b/src/test/kotlin/eventDemo/business/command/GameCommandHandlerTest.kt similarity index 96% rename from src/test/kotlin/eventDemo/app/command/GameCommandHandlerTest.kt rename to src/test/kotlin/eventDemo/business/command/GameCommandHandlerTest.kt index 3cec175..0810acb 100644 --- a/src/test/kotlin/eventDemo/app/command/GameCommandHandlerTest.kt +++ b/src/test/kotlin/eventDemo/business/command/GameCommandHandlerTest.kt @@ -1,6 +1,5 @@ -package eventDemo.app.command +package eventDemo.business.command -import eventDemo.business.command.GameCommandHandler import eventDemo.business.command.command.GameCommand import eventDemo.business.command.command.IWantToJoinTheGameCommand import eventDemo.business.entity.GameId diff --git a/src/test/kotlin/eventDemo/app/command/GameCommandRunnerTest.kt b/src/test/kotlin/eventDemo/business/command/GameCommandRunnerTest.kt similarity index 80% rename from src/test/kotlin/eventDemo/app/command/GameCommandRunnerTest.kt rename to src/test/kotlin/eventDemo/business/command/GameCommandRunnerTest.kt index 577f62d..3e5b0dd 100644 --- a/src/test/kotlin/eventDemo/app/command/GameCommandRunnerTest.kt +++ b/src/test/kotlin/eventDemo/business/command/GameCommandRunnerTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.command +package eventDemo.business.command import io.kotest.core.spec.style.FunSpec diff --git a/src/test/kotlin/eventDemo/app/command/command/ICantPlayCommandTest.kt b/src/test/kotlin/eventDemo/business/command/command/ICantPlayCommandTest.kt similarity index 75% rename from src/test/kotlin/eventDemo/app/command/command/ICantPlayCommandTest.kt rename to src/test/kotlin/eventDemo/business/command/command/ICantPlayCommandTest.kt index 6185b1c..6b82afb 100644 --- a/src/test/kotlin/eventDemo/app/command/command/ICantPlayCommandTest.kt +++ b/src/test/kotlin/eventDemo/business/command/command/ICantPlayCommandTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.command.command +package eventDemo.business.command.command import io.kotest.core.spec.style.FunSpec diff --git a/src/test/kotlin/eventDemo/app/command/command/IWantToJoinTheGameCommandTest.kt b/src/test/kotlin/eventDemo/business/command/command/IWantToJoinTheGameCommandTest.kt similarity index 77% rename from src/test/kotlin/eventDemo/app/command/command/IWantToJoinTheGameCommandTest.kt rename to src/test/kotlin/eventDemo/business/command/command/IWantToJoinTheGameCommandTest.kt index 0a880db..89e6009 100644 --- a/src/test/kotlin/eventDemo/app/command/command/IWantToJoinTheGameCommandTest.kt +++ b/src/test/kotlin/eventDemo/business/command/command/IWantToJoinTheGameCommandTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.command.command +package eventDemo.business.command.command import io.kotest.core.spec.style.FunSpec diff --git a/src/test/kotlin/eventDemo/app/command/command/IWantToPlayCardCommandTest.kt b/src/test/kotlin/eventDemo/business/command/command/IWantToPlayCardCommandTest.kt similarity index 76% rename from src/test/kotlin/eventDemo/app/command/command/IWantToPlayCardCommandTest.kt rename to src/test/kotlin/eventDemo/business/command/command/IWantToPlayCardCommandTest.kt index 5111f5d..c3e77f4 100644 --- a/src/test/kotlin/eventDemo/app/command/command/IWantToPlayCardCommandTest.kt +++ b/src/test/kotlin/eventDemo/business/command/command/IWantToPlayCardCommandTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.command.command +package eventDemo.business.command.command import io.kotest.core.spec.style.FunSpec diff --git a/src/test/kotlin/eventDemo/app/command/command/IamReadyToPlayCommandTest.kt b/src/test/kotlin/eventDemo/business/command/command/IamReadyToPlayCommandTest.kt similarity index 76% rename from src/test/kotlin/eventDemo/app/command/command/IamReadyToPlayCommandTest.kt rename to src/test/kotlin/eventDemo/business/command/command/IamReadyToPlayCommandTest.kt index 4fa09fb..495b834 100644 --- a/src/test/kotlin/eventDemo/app/command/command/IamReadyToPlayCommandTest.kt +++ b/src/test/kotlin/eventDemo/business/command/command/IamReadyToPlayCommandTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.command.command +package eventDemo.business.command.command import io.kotest.core.spec.style.FunSpec diff --git a/src/test/kotlin/eventDemo/app/entity/DeckTest.kt b/src/test/kotlin/eventDemo/business/entity/DeckTest.kt similarity index 94% rename from src/test/kotlin/eventDemo/app/entity/DeckTest.kt rename to src/test/kotlin/eventDemo/business/entity/DeckTest.kt index 1d3ba15..9636634 100644 --- a/src/test/kotlin/eventDemo/app/entity/DeckTest.kt +++ b/src/test/kotlin/eventDemo/business/entity/DeckTest.kt @@ -1,10 +1,7 @@ -package eventDemo.app.entity +package eventDemo.business.entity -import eventDemo.app.allCardCount -import eventDemo.app.allCards -import eventDemo.business.entity.Deck -import eventDemo.business.entity.Player -import eventDemo.business.entity.initHands +import eventDemo.allCardCount +import eventDemo.allCards import io.kotest.core.spec.style.FunSpec import io.kotest.matchers.collections.shouldBeUnique import io.kotest.matchers.ints.shouldBeExactly diff --git a/src/test/kotlin/eventDemo/app/entity/PlayerHandKtTest.kt b/src/test/kotlin/eventDemo/business/entity/PlayerHandKtTest.kt similarity index 97% rename from src/test/kotlin/eventDemo/app/entity/PlayerHandKtTest.kt rename to src/test/kotlin/eventDemo/business/entity/PlayerHandKtTest.kt index 61b31ae..0638b13 100644 --- a/src/test/kotlin/eventDemo/app/entity/PlayerHandKtTest.kt +++ b/src/test/kotlin/eventDemo/business/entity/PlayerHandKtTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.entity +package eventDemo.business.entity import eventDemo.business.entity.Card import eventDemo.business.entity.Player diff --git a/src/test/kotlin/eventDemo/app/entity/PlayersHandsTest.kt b/src/test/kotlin/eventDemo/business/entity/PlayersHandsTest.kt similarity index 90% rename from src/test/kotlin/eventDemo/app/entity/PlayersHandsTest.kt rename to src/test/kotlin/eventDemo/business/entity/PlayersHandsTest.kt index 5c57990..d81f700 100644 --- a/src/test/kotlin/eventDemo/app/entity/PlayersHandsTest.kt +++ b/src/test/kotlin/eventDemo/business/entity/PlayersHandsTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.entity +package eventDemo.business.entity import io.kotest.core.spec.style.FunSpec diff --git a/src/test/kotlin/eventDemo/app/event/GameEventHandlerTest.kt b/src/test/kotlin/eventDemo/business/event/GameEventHandlerTest.kt similarity index 89% rename from src/test/kotlin/eventDemo/app/event/GameEventHandlerTest.kt rename to src/test/kotlin/eventDemo/business/event/GameEventHandlerTest.kt index e5129ee..1af3c99 100644 --- a/src/test/kotlin/eventDemo/app/event/GameEventHandlerTest.kt +++ b/src/test/kotlin/eventDemo/business/event/GameEventHandlerTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.event +package eventDemo.business.event import io.kotest.core.spec.style.FunSpec diff --git a/src/test/kotlin/eventDemo/app/event/projection/GameStateBuilderTest.kt b/src/test/kotlin/eventDemo/business/event/projection/GameStateBuilderTest.kt similarity index 99% rename from src/test/kotlin/eventDemo/app/event/projection/GameStateBuilderTest.kt rename to src/test/kotlin/eventDemo/business/event/projection/GameStateBuilderTest.kt index 02b3396..e0508ed 100644 --- a/src/test/kotlin/eventDemo/app/event/projection/GameStateBuilderTest.kt +++ b/src/test/kotlin/eventDemo/business/event/projection/GameStateBuilderTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.event.projection +package eventDemo.business.event.projection import eventDemo.business.entity.Card import eventDemo.business.entity.GameId diff --git a/src/test/kotlin/eventDemo/app/event/projection/GameStateRepositoryTest.kt b/src/test/kotlin/eventDemo/business/event/projection/GameStateRepositoryTest.kt similarity index 99% rename from src/test/kotlin/eventDemo/app/event/projection/GameStateRepositoryTest.kt rename to src/test/kotlin/eventDemo/business/event/projection/GameStateRepositoryTest.kt index 0d3b047..51be241 100644 --- a/src/test/kotlin/eventDemo/app/event/projection/GameStateRepositoryTest.kt +++ b/src/test/kotlin/eventDemo/business/event/projection/GameStateRepositoryTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.event.projection +package eventDemo.business.event.projection import eventDemo.business.entity.GameId import eventDemo.business.entity.Player diff --git a/src/test/kotlin/eventDemo/app/event/projection/GameStateTest.kt b/src/test/kotlin/eventDemo/business/event/projection/GameStateTest.kt similarity index 99% rename from src/test/kotlin/eventDemo/app/event/projection/GameStateTest.kt rename to src/test/kotlin/eventDemo/business/event/projection/GameStateTest.kt index 25fa4ab..80e3300 100644 --- a/src/test/kotlin/eventDemo/app/event/projection/GameStateTest.kt +++ b/src/test/kotlin/eventDemo/business/event/projection/GameStateTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.event.projection +package eventDemo.business.event.projection import eventDemo.business.entity.Card import eventDemo.business.entity.Deck diff --git a/src/test/kotlin/eventDemo/app/event/projection/ProjectionSnapshotRepositoryInMemoryTest.kt b/src/test/kotlin/eventDemo/business/event/projection/ProjectionSnapshotRepositoryInMemoryTest.kt similarity index 99% rename from src/test/kotlin/eventDemo/app/event/projection/ProjectionSnapshotRepositoryInMemoryTest.kt rename to src/test/kotlin/eventDemo/business/event/projection/ProjectionSnapshotRepositoryInMemoryTest.kt index 916792f..4a1a335 100644 --- a/src/test/kotlin/eventDemo/app/event/projection/ProjectionSnapshotRepositoryInMemoryTest.kt +++ b/src/test/kotlin/eventDemo/business/event/projection/ProjectionSnapshotRepositoryInMemoryTest.kt @@ -1,4 +1,4 @@ -package eventDemo.app.event.projection +package eventDemo.business.event.projection import eventDemo.libs.event.AggregateId import eventDemo.libs.event.Event