From fe51aaa8aa141cbbfc4c04d39422e1bcca01868c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Csneha122=E2=80=9D?= <“sneha@appsmith.com”> Date: Fri, 13 Sep 2024 18:25:49 +0530 Subject: [PATCH] fix: consolidated api test file split to ce --- .../{ => ce}/ConsolidatedAPIServiceImplTest.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) rename app/server/appsmith-server/src/test/java/com/appsmith/server/services/{ => ce}/ConsolidatedAPIServiceImplTest.java (98%) diff --git a/app/server/appsmith-server/src/test/java/com/appsmith/server/services/ConsolidatedAPIServiceImplTest.java b/app/server/appsmith-server/src/test/java/com/appsmith/server/services/ce/ConsolidatedAPIServiceImplTest.java similarity index 98% rename from app/server/appsmith-server/src/test/java/com/appsmith/server/services/ConsolidatedAPIServiceImplTest.java rename to app/server/appsmith-server/src/test/java/com/appsmith/server/services/ce/ConsolidatedAPIServiceImplTest.java index cddb33847c5b..97e651a6b2ea 100644 --- a/app/server/appsmith-server/src/test/java/com/appsmith/server/services/ConsolidatedAPIServiceImplTest.java +++ b/app/server/appsmith-server/src/test/java/com/appsmith/server/services/ce/ConsolidatedAPIServiceImplTest.java @@ -1,4 +1,4 @@ -package com.appsmith.server.services; +package com.appsmith.server.services.ce; import com.appsmith.external.models.ActionDTO; import com.appsmith.external.models.Datasource; @@ -32,6 +32,14 @@ import com.appsmith.server.plugins.base.PluginService; import com.appsmith.server.repositories.ApplicationRepository; import com.appsmith.server.repositories.NewPageRepository; +import com.appsmith.server.services.ApplicationPageService; +import com.appsmith.server.services.ConsolidatedAPIService; +import com.appsmith.server.services.MockDataService; +import com.appsmith.server.services.ProductAlertService; +import com.appsmith.server.services.SessionUserService; +import com.appsmith.server.services.TenantService; +import com.appsmith.server.services.UserDataService; +import com.appsmith.server.services.UserService; import com.appsmith.server.themes.base.ThemeService; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired;