In test Estimation there are two things one is Planning effort and other one is Execution Effort.
![]() In test Estimation there are two things one is Planning effort and other one is Execution Effort. in test estimation I have given planning effort and excution effort and same reflecting in XML as well<rqm_process:hasWorkflowState rdf:resource="https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/process-info/_jI04oCitEeqCcJYvDCno0g/workflowstate/com.ibm.rqm.process.testplan.workflow/com.ibm.rqm.planning.common.approved"/>
is there anyway possible to do it?
|
Accepted answer
![]() Hi Sudarshan,
From the above XML, I see you are using the OSLC API.
If you use the REST API, you get the below:
<ns2:planningEffort>100</ns2:planningEffort>
<ns2:executionEffort>72000</ns2:executionEffort> <ns2:planningEffortPersonHours>100.0</ns2:planningEffortPersonHours> <ns2:executionEffortPersonHours>72000.0</ns2:executionEffortPersonHours> <ns2:planning effort="100.0" units="PH"/> <ns2:execution effort="3000.0" units="PD"/> </ns2:estimation>
where the unit is Person Hours.
Sudarshan M selected this answer as the correct answer
|