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

Fix for f_CSE_DMR_CRE_022 and f_CSE_DMR_CRE_023 to add case for timeSeriesInstance

parent b2213e66
No related branches found
No related tags found
No related merge requests found
......@@ -4429,7 +4429,13 @@ module OneM2M_PermutationFunctions {
vc_cse1.start(f_cse_announcementProcedure_createHandler());
v_parentIndex := f_cse_createResource(int3, v_create, v_aeIndex);
f_aeSimu_checkComponentDoneAndGetVerdict(vc_cse1);
} else if (p_resourceType != int18) {
} else if(p_resourceType == int30) {
v_create := m_createTimeSeriesBase;
v_create.primitiveContent.timeSeries.announceTo := {PX_TS_CSE1.cseId};
vc_cse1.start(f_cse_announcementProcedure_createHandler());
v_parentIndex := f_cse_createResource(int29, v_create, v_aeIndex);
f_aeSimu_checkComponentDoneAndGetVerdict(vc_cse1);
} else if (p_resourceType != int18) {
v_parentIndex := v_aeIndex;
}
......@@ -4476,7 +4482,13 @@ module OneM2M_PermutationFunctions {
vc_cse1.start(f_cse_announcementProcedure_createHandler());
v_parentIndex := f_cse_createResource(int3, v_create, v_aeIndex);
f_aeSimu_checkComponentDoneAndGetVerdict(vc_cse1);
} else if (p_resourceType != int18) {
} else if(p_resourceType == int30) {
v_create := m_createTimeSeriesBase;
v_create.primitiveContent.timeSeries.announceTo := {PX_TS_CSE1.cseId};
vc_cse1.start(f_cse_announcementProcedure_createHandler());
v_parentIndex := f_cse_createResource(int29, v_create, v_aeIndex);
f_aeSimu_checkComponentDoneAndGetVerdict(vc_cse1);
} else if (p_resourceType != int18) {
v_parentIndex := v_aeIndex;
}
......
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