BSC_Tests: Implement remaining missing paging tests

We now test all of the cell identification types specified in BSSMAP,
and also lists with a length != 1 entry.

Change-Id: I261f948d6054d0c90078c1dd0b2785a967b0a49b
diff --git a/library/BSSMAP_Templates.ttcn b/library/BSSMAP_Templates.ttcn
index c98f5eb..f0a8a08 100644
--- a/library/BSSMAP_Templates.ttcn
+++ b/library/BSSMAP_Templates.ttcn
@@ -695,6 +695,18 @@
 template OCT2 ts_BSSMAP_CI_CI(GsmCellId ci) := int2oct(ci, 2);
 template OCT2 ts_BSSMAP_CI_LAC(GsmLac lac) := int2oct(lac, 2);
 
+template BSSMAP_FIELD_CellIdentification_PLMN_LAC_RNC
+ts_BSSMAP_CI_PLMN_LAC_RNC(GsmMcc mcc, GsmMnc mnc, GsmLac lac, uint16_t rnc_id) := {
+	mcc_mnc := f_enc_mcc_mnc(mcc, mnc),
+	lac := int2oct(lac, 2),
+	rncId := int2oct(rnc_id, 2)
+}
+
+template BSSMAP_FIELD_CellIdentification_LAC_RNC ts_BSSMAP_CI_LAC_RNC(GsmLac lac, uint16_t rnc_id) := {
+	lac := int2oct(lac, 2),
+	rncId := int2oct(rnc_id, 2)
+}
+
 template BSSMAP_IE_ChannelNeeded ts_BSSMAP_IE_ChanNeeded(BIT2 chneed) := {
 	elementIdentifier := '24'O,
 	channel := chneed,