BTS_Tests: move ts_RRM_GprsSuspReq to L3_Templates.ttcn

Change-Id: Ib1aa0053cfca8ccd6ff613ab3b1c4f5afbd27534
This commit is contained in:
Vadim Yanitskiy 2020-07-04 21:15:26 +07:00
parent b2a90db875
commit 13c26f9279
2 changed files with 20 additions and 20 deletions

View File

@ -5089,26 +5089,6 @@ testcase TC_pcu_oml_alert() runs on test_CT {
setverdict(pass);
}
template (value) PDU_ML3_MS_NW ts_RRM_GprsSuspReq(template (value) OCT4 tlli,
template (value) RoutingAreaIdentificationV rai,
template (value) OCT1 cause) := {
discriminator := '0000'B, /* overwritten */
tiOrSkip := {
skipIndicator := '0000'B
},
msgs := {
rrm := {
gPRS_suspensionRequest := {
messageType := '00110100'B,
tLLI := tlli,
routingAreaIdentification := rai,
suspensionCause := cause,
service_Support := omit
}
}
}
}
/* test for forwarding of RR SUSPEND from CS lchan to PCU via PCU socket */
private function f_TC_rr_suspend_req(charstring id) runs on ConnHdlr {
var PCUIF_Message first_info;

View File

@ -3241,6 +3241,26 @@ template PDU_ML3_NW_MS tr_ML3_MT_MM_Info := {
}
}
template (value) PDU_ML3_MS_NW ts_RRM_GprsSuspReq(template (value) OCT4 tlli,
template (value) RoutingAreaIdentificationV rai,
template (value) OCT1 cause) := {
discriminator := '0000'B, /* overwritten */
tiOrSkip := {
skipIndicator := '0000'B
},
msgs := {
rrm := {
gPRS_suspensionRequest := {
messageType := '00110100'B,
tLLI := tlli,
routingAreaIdentification := rai,
suspensionCause := cause,
service_Support := omit
}
}
}
}
}