Author: surajk
Date: Wed Oct 2 08:01:23 2019
New Revision: 1867874
URL: http://svn.apache.org/viewvc?rev=1867874&view=rev
Log:
Improved: Unit test case for service - AssociatedRequirementWithRequestItem.
(OFBIZ-8933)
Thanks: Avnindra Sharma for reporting and 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=1867874&r1=1867873&r2=1867874&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
Wed Oct 2 08:01:23 2019
@@ -202,4 +202,14 @@ class OrderTests extends OFBizTestCase {
Map serviceResult =
dispatcher.runSync('checkCreateStockRequirementAtp', serviceCtx)
assert ServiceUtil.isSuccess(serviceResult)
}
+ void testAssociatedRequirementWithRequestItem() {
+ Map serviceCtx = [
+ requirementId: '1000',
+ custRequestId: '9000',
+ custRequestItemSeqId: '00001',
+ userLogin:
EntityQuery.use(delegator).from('UserLogin').where('userLoginId',
'system').cache().queryOne()
+ ]
+ Map serviceResult =
dispatcher.runSync('associatedRequirementWithRequestItem', serviceCtx)
+ assert ServiceUtil.isSuccess(serviceResult)
+ }
}