Commit c50d7a29 authored by poglitsch's avatar poglitsch
Browse files

removed

parent 9d973a43
Loading
Loading
Loading
Loading

AtsImsIot/AtsImsIot_PIXITS.ttcn

deleted100644 → 0
+0 −74
Original line number Diff line number Diff line
module AtsImsIot_PIXITS {
	
	import from LibIot_TypesAndValues {type ProductList;}

	/**
	 * 
	 * @desc Example of module parameter based entry of EUT interface information for all products particpating in an interoperability event
	 */
	modulepar ProductList PX_PRODUCTS := {
		{
			productName := "Testing Tech IMS Core",
			monitorInterfaces := {
				{
					interfaceName := "Gm",
					interfaceInfo := {
						IpInterfaceInfo := {
							{
								domainName := "pcscf.testingtech.com",
								IpAddress := "127.0.0.1",
								portNumbers := {5060, 5061}
							}
						}
					}
				},
				{
					interfaceName := "Mw",
					interfaceInfo := {
						IpInterfaceInfo := {
							{
								domainName := "icscf.testingtech.com",
								IpAddress := "127.0.0.1",
								portNumbers := {5080}
							},
							{
								domainName := "scscf.testingtech.com",
								IpAddress := "127.0.0.1",
								portNumbers := {5090}
							}
						}
					}
				}
			}
		},
		{
			productName := "ETSI UE",
			monitorInterfaces := {
				{
					interfaceName := "Gm",
					interfaceInfo := {
						IpInterfaceInfo := {
							{
								domainName := omit,
								IpAddress := "127.0.0.1",
								portNumbers := {5060}
							}
						}
					}
				}
			}
		}
	}
 	
 	/**
 	 * 
 	 * @desc Selects product based on index in PX_PRODCUTS vendor list for EUT_A
 	 */
	modulepar integer PX_EUT_A := 0;
	
	/**
	 * 
	 * @desc Selects product based on index in PX_PRODCUTS vendor list for EUT_B
	 */
	modulepar integer PX_EUT_B := 1;
}
 No newline at end of file