This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new 70b86f9eb2 Improved: Reintroduce groovy-test-suite test case
(OFBIZ-12320)
70b86f9eb2 is described below
commit 70b86f9eb237b850ec59ae5672ec87986edc39d5
Author: Jacques Le Roux <[email protected]>
AuthorDate: Sun Apr 7 09:43:13 2024 +0200
Improved: Reintroduce groovy-test-suite test case (OFBIZ-12320)
Hopefully will give more information for fundamental differences between
junit-test-suite and groovy-test-suite while writing a test-case
---
framework/testtools/dtd/test-suite.xsd | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/framework/testtools/dtd/test-suite.xsd
b/framework/testtools/dtd/test-suite.xsd
index 0daed87f13..3f9d11353c 100644
--- a/framework/testtools/dtd/test-suite.xsd
+++ b/framework/testtools/dtd/test-suite.xsd
@@ -70,8 +70,7 @@ under the License.
<xs:element name="junit-test-suite" substitutionGroup="TestCaseTypes">
<xs:annotation>
<xs:documentation>
- Used for JUnit test suites written as a Java class.
- This is rather to be used in production
+ Used for JUnit test suites written as a Java class. This is
rather to be used in production/
</xs:documentation>
</xs:annotation>
<xs:complexType>
@@ -93,8 +92,7 @@ under the License.
<xs:element name="groovy-test-suite" substitutionGroup="TestCaseTypes">
<xs:annotation>
<xs:documentation>
- Used for JUnit test suites written as a Groovy class. See
http://groovy-lang.org/testing.html
- This is rather to be used during development and testing
+ Used for JUnit test suites written as a Groovy class. See
http://groovy-lang.org/testing.html. This is rather to be used during
development and testing.
When going to production; for performance reason
(compilation), you should use rather use junit-test-suite and move the test
file under main and use.
See existing examples.
</xs:documentation>