This is an automated email from the ASF dual-hosted git repository. pgil pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
The following commit(s) were added to refs/heads/trunk by this push: new 2dca8997c Fix Ecommerce Groovy tests (OFBIZ-13009) 2dca8997c is described below commit 2dca8997ca4d98e405e5b33a67abd956de5cc816 Author: Gil Portenseigne <gil.portensei...@nereide.fr> AuthorDate: Thu Apr 11 17:24:15 2024 +0200 Fix Ecommerce Groovy tests (OFBIZ-13009) Fixes the Unable to load test suite class : OrderNotificationTests issue. --- .../apache/ofbiz/ecommerce/order/test}/OrderNotificationTests.groovy | 2 +- ecommerce/testdef/EcommerceTest.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ecommerce/src/test/groovy/org/apache/ecommerce-plugins/ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/OrderNotificationTests.groovy b/ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/order/test/OrderNotificationTests.groovy similarity index 98% rename from ecommerce/src/test/groovy/org/apache/ecommerce-plugins/ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/OrderNotificationTests.groovy rename to ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/order/test/OrderNotificationTests.groovy index 403c8c5a3..fddd69bc4 100644 --- a/ecommerce/src/test/groovy/org/apache/ecommerce-plugins/ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/OrderNotificationTests.groovy +++ b/ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/order/test/OrderNotificationTests.groovy @@ -16,7 +16,7 @@ * specific language governing permissions and limitations * under the License. */ -package org.apache.ofbiz.ecommerce +package org.apache.ofbiz.ecommerce.order.test import org.apache.ofbiz.service.ServiceUtil import org.apache.ofbiz.service.testtools.OFBizTestCase diff --git a/ecommerce/testdef/EcommerceTest.xml b/ecommerce/testdef/EcommerceTest.xml index 86ade3e90..3408ccc8e 100644 --- a/ecommerce/testdef/EcommerceTest.xml +++ b/ecommerce/testdef/EcommerceTest.xml @@ -25,6 +25,6 @@ under the License. <entity-xml action="load" entity-xml-url="component://order/testdef/data/OrderTestData.xml"/> </test-case> <test-case case-name="ecommerce-notification-tests"> - <junit-test-suite class-name="org.apache.ofbiz.ecommerce.OrderNotificationTests"/> + <junit-test-suite class-name="org.apache.ofbiz.ecommerce.order.test.OrderNotificationTests"/> </test-case> </test-suite>