Commit c0b404f8 authored by wattelet's avatar wattelet
Browse files

S6a PIXIT and Test System

parent a75b8e68
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
/**
 *	@author 	STF 466
 *  @version    $Id: DiameterS6a_PIXITS.ttcn  $
 *	@desc		This module provides the PIXIT used for the SIP-IMS-DIAMETER tests.
 */

module DiameterS6a_PIXITS
{

    import from LibCommon_BasicTypesAndValues all;
    import from LibCommon_DataStrings all;
    import from LibDiameter_TypesAndValues all;

// SUT specific implementation variants
	group DiameterCommonS6aData{

    	modulepar RAT_Type PX_RAT_TYPE := GERAN_E;

        modulepar UInt32 PX_ULR_FLAGS := 0;

        modulepar Oct3 PX_VISITED_PLMN_ID := '000000'O;
	} //end group DiameterCommonS6aData
} // end module DiameterS6a_PIXITS
 No newline at end of file
+30 −0
Original line number Diff line number Diff line
/**
 *	@author 	STF 466
 *  @version    $Id: DiameterS9_TestSystem.ttcn$
 *	@desc		This module provides the types and ports used by the test component 
 *              for SIP-IMS-DIAMETER tests.
 */

module DiameterS6a_TestSystem {	

    import from DiameterS6a_TypesAndValues all;
	
	group SystemConfiguration {
	  group Ports {
		type port DiameterS6aPort message { inout DIAMETER_S6a_Message };
	  } // End Group Ports

	  group TestComponents {
		group TestSystemInterfaces {
    		/*
    		** @desc  The test system interface
    		*/
    		type component TestAdapter {
                port DiameterS6aPort MME_S6a, HSS_S6a; 
	  			//global variables
	  			
    		}
		} // end Group TestSystemInterfaces
	  }// end group TestComponents
	} //end group SystemConfiguration
} // end module DiameterS6a_TestSystem