Commit 7c3ae7da authored by garciay's avatar garciay
Browse files

Prefer to use named port for equipment TTCN-3 port creation

parent c7c49a8f
Loading
Loading
Loading
Loading
+42 −39
Original line number Diff line number Diff line
@@ -39,8 +39,11 @@ module LibIot_TestConfiguration {
	* @return 			reference to the created equipment user component
	*/	
	function f_cf_create_IotEquipmentUser(in charstring p_name) runs on TestCoordinator return IotEquipmentUser {
        // TODO var IotEquipmentUser v_iotEquipmentUser := IotEquipmentUser.create(p_name) alive;
		var IotEquipmentUser v_iotEquipmentUser := IotEquipmentUser.create alive;
      var IotEquipmentUser v_iotEquipmentUser := IotEquipmentUser.create(p_name) alive;
		  // TODO var IotEquipmentUser v_iotEquipmentUser := IotEquipmentUser.create alive;
		  /* YANN
		  	It's really better to use named port for debug and so on
		  */
		
		return v_iotEquipmentUser; 
	}