WIP: Intra-BSC handover testing

Change-Id: Ic47e639a7c8640c736c84a44780fc8e111a64b52
diff --git a/library/L3_Templates.ttcn b/library/L3_Templates.ttcn
index d2ee605..cfbf96b 100644
--- a/library/L3_Templates.ttcn
+++ b/library/L3_Templates.ttcn
@@ -338,6 +338,25 @@
 	}
 }
 
+template (value) PDU_ML3_MS_NW ts_RRM_HandoverComplete(OCT1 cause) := {
+	discriminator := '0000'B, /* overwritten */
+	tiOrSkip := {
+		skipIndicator := '0000'B
+	},
+	msgs := {
+		rrm := {
+			handoverComplete := {
+				messageType := '00101100'B,
+				rRCause := {
+					valuePart := cause
+				},
+				mobileObsservedTimeDiff := omit,
+				mobileTimeDifferenceHyperframe := omit
+			}
+		}
+	}
+}
+
 function ts_CM3_TLV(template (omit) OCTN cm3) return template MobileStationClassmark3_TLV {
 	if (not isvalue(cm3)) {
 		return omit;