Skip to content
Snippets Groups Projects
Commit 6af72bc6 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

TC_CSE_DMR_DEL_001 - Addition of the check for verifying the correct deletion of the resource

parent 06a7b86e
No related branches found
No related tags found
1 merge request!25Ae fixes
......@@ -7,7 +7,7 @@
*
* @author oneM2M
* @version $URL: https://oldforge.etsi.org/svn/oneM2M/trunk/ttcn/OneM2M_Testcases.ttcn $
* $Id: OneM2M_Testcases.ttcn 354 2017-08-17 15:06:38Z reinaortega $
* $Id: OneM2M_Testcases.ttcn 355 2017-08-18 07:54:17Z reinaortega $
* @desc Module containing test cases for oneM2M
*
*/
......@@ -12082,6 +12082,15 @@ module OneM2M_Testcases {
setverdict(fail, __SCOPE__ & ": No answer while deleting resource type " & int2str(enum2int(p_resourceType)));
}
}
f_checkCseTesterStatus();
//Check to see if the resource is present or not
if (f_isResourcePresent(v_resourceIndex)){
setverdict(fail, __SCOPE__ & ":INFO: Resource not deleted");
} else {
setverdict(pass, __SCOPE__ & ":ERROR: Resource deleted");
}
// Postamble
f_cse_postamble_deleteResources();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment