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

Missing permutation TC_AE_REG_CRE_002_SRV for supportedReleaseVersion

parent 8650b38a
No related branches found
No related tags found
No related merge requests found
...@@ -641,6 +641,20 @@ module OneM2M_Testcases_AE_Release_1 { ...@@ -641,6 +641,20 @@ module OneM2M_Testcases_AE_Release_1 {
v_cse1.done; v_cse1.done;
} }
testcase TC_AE_REG_CRE_002_SRV() runs on Tester system AeSystem {
var CseSimu v_cse1 := CseSimu.create("CSE1") alive;
//primitives for utPort
var template UtTriggerPrimitive v_utRequest := m_utCreateAe;
var template RequestPrimitive v_createAe := mw_createAe;
var universal charstring v_action := __SCOPE__ & ": Please, send a valid AE CREATE Registration Request containing attribute SupportedReleaseVersions";
v_utRequest.requestPrimitive.primitiveContent.aE.supportedReleaseVersions := {"2a"};
v_utRequest.forcedFields := {{name := "supportedReleaseVersions", value_ := "UNINITIALIZED"}};
v_createAe.primitiveContent.aE.supportedReleaseVersions := ?;//Check value other than UNINITIALIZED, done by typing
v_cse1.start(f_AE_REG_CRE_002(v_utRequest,v_createAe,v_action));
v_cse1.done;
}
}//End of subgroup AE_REG_CRE_002 }//End of subgroup AE_REG_CRE_002
} // End of subgroup Create } // End of subgroup Create
......
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