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

Fix for f_CSE_DMR_CRE_014 to include case for timeSeriesInstance

parent 2d7ad40f
No related branches found
No related tags found
No related merge requests found
...@@ -3928,6 +3928,13 @@ module OneM2M_PermutationFunctions { ...@@ -3928,6 +3928,13 @@ module OneM2M_PermutationFunctions {
else{ else{
setverdict(fail, __SCOPE__ & ": CurrentByteSize attribute in content resource not incremented successfully"); setverdict(fail, __SCOPE__ & ": CurrentByteSize attribute in content resource not incremented successfully");
} }
} else if(p_parentResourceType == int29){
if(v_response.primitive.responsePrimitive.primitiveContent.timeSeries.currentByteSize == 8) { //Default content: "AnyValue" (8 bytes length)
setverdict(pass, __SCOPE__ & ": CurrentByteSize attribute in content resource is incremented successfully");
}
else{
setverdict(fail, __SCOPE__ & ": CurrentByteSize attribute in content resource not incremented successfully");
}
} }
} }
[] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment