Author: surajk
Date: Sun Oct 6 11:49:34 2019
New Revision: 1868055
URL: http://svn.apache.org/viewvc?rev=1868055&view=rev
Log:
Improved: Unit test case for service - AutoAssignRequirementToSupplier.
(OFBIZ-8934)
Thanks: Avnindra Sharma for reporting, Anushi Gupta for providing the updated
patch.
Modified:
ofbiz/ofbiz-framework/trunk/applications/order/src/main/groovy/org/apache/ofbiz/order/OrderTests.groovy
Modified:
ofbiz/ofbiz-framework/trunk/applications/order/src/main/groovy/org/apache/ofbiz/order/OrderTests.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/order/src/main/groovy/org/apache/ofbiz/order/OrderTests.groovy?rev=1868055&r1=1868054&r2=1868055&view=diff
==============================================================================
---
ofbiz/ofbiz-framework/trunk/applications/order/src/main/groovy/org/apache/ofbiz/order/OrderTests.groovy
(original)
+++
ofbiz/ofbiz-framework/trunk/applications/order/src/main/groovy/org/apache/ofbiz/order/OrderTests.groovy
Sun Oct 6 11:49:34 2019
@@ -304,4 +304,12 @@ class OrderTests extends OFBizTestCase {
Map serviceResult = dispatcher.runSync('processRefundReturn',
serviceCtx)
assert ServiceUtil.isSuccess(serviceResult)
}
+ void testAutoAssignRequirementToSupplier() {
+ Map serviceCtx = [
+ requirementId: '1000',
+ userLogin:
EntityQuery.use(delegator).from('UserLogin').where('userLoginId',
'system').cache().queryOne()
+ ]
+ Map serviceResult =
dispatcher.runSync('autoAssignRequirementToSupplier', serviceCtx)
+ assert ServiceUtil.isSuccess(serviceResult)
+ }
}