Skip to content
Snippets Groups Projects
Commit eb38e02c authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files
parent 5cde9288
No related branches found
No related tags found
No related merge requests found
......@@ -2033,15 +2033,15 @@ module OneM2M_Testcases_AE_Release_1 {
f_checkCseSimuStatus();
//Test behavior
f_send(e_mca_in_port, m_request(m_notify(f_getLocalResourceAddress(v_resourceIndex))));
f_send(e_mca_port, m_request(m_notify(f_getLocalResourceAddress(v_resourceIndex))));
tc_ac.start;
alt{
[] mcaPortIn.receive(mw_response(mw_responsePrimitiveOK)) {
[] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) {
tc_ac.stop;
setverdict(pass, __SCOPE__ & " : Notification response is accepted!");
}
[] mcaPortIn.receive {
[] mcaPort.receive {
tc_ac.stop;
setverdict(fail, __SCOPE__ & " : Notification response is rejected due to not including mandatory attributes!");
}
......@@ -2142,15 +2142,15 @@ module OneM2M_Testcases_AE_Release_1 {
f_checkCseSimuStatus();
//Test behavior
f_send(e_mca_in_port, m_request(m_notifyAggregatedNotification));
f_send(e_mca_port, m_request(m_notifyAggregatedNotification));
tc_ac.start;
alt{
[] mcaPortIn.receive(mw_response(mw_responsePrimitiveOK)) {
[] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) {
tc_ac.stop;
setverdict(pass, __SCOPE__ & " : Notification response is accepted!");
}
[] mcaPortIn.receive {
[] mcaPort.receive {
tc_ac.stop;
setverdict(fail, __SCOPE__ & " : Notification response is rejected due to not including mandatory attributes!");
}
......
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