BSSGP_Emulation: Allow a "CreateCb" to handle unknown inbound TLLI

The existing BSSGP Code assumed that the TLLIs were always known "a
priori" by the test case.  With the newly-introduced create_cb,
the user can provide a function to handle any incoming messages for an
unknown TLLL.  The default handler behaves like before: fail +
terminate.

Change-Id: Ice0e145f5a6518ff79547dd851042b7965f38e00
diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn
index a602b21..0b298bb 100644
--- a/sgsn/SGSN_Tests.ttcn
+++ b/sgsn/SGSN_Tests.ttcn
@@ -334,7 +334,8 @@
 					},
 					cell_id := 20960
 				},
-				depth := BSSGP_DECODE_DEPTH_L3
+				depth := BSSGP_DECODE_DEPTH_L3,
+				create_cb := refers(BSSGP_Emulation.DefaultCreateCallback)
 			}
 		}
 	};
@@ -354,7 +355,8 @@
 					},
 					cell_id := 20961
 				},
-				depth := BSSGP_DECODE_DEPTH_L3
+				depth := BSSGP_DECODE_DEPTH_L3,
+				create_cb := refers(BSSGP_Emulation.DefaultCreateCallback)
 			}
 		}
 	};
@@ -374,7 +376,8 @@
 					},
 					cell_id := 20962
 				},
-				depth := BSSGP_DECODE_DEPTH_L3
+				depth := BSSGP_DECODE_DEPTH_L3,
+				create_cb := refers(BSSGP_Emulation.DefaultCreateCallback)
 			}
 		}
 	};