Commit 44329171 authored by garciay's avatar garciay
Browse files

Rename PIXITS into Pixits

parent 83f846a0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ module LibS1AP_Interface {
    import from S1AP_IEs language "ASN.1:1997" all;
    import from S1AP_PDU_Contents language "ASN.1:1997" all;
    import from S1AP_PDU_Descriptions language "ASN.1:1997" all;
    import from LibS1AP_PIXITS all;
    import from LibS1AP_Pixits all;
    
    group portDefinitions {
        

ttcn3/S1AP_PICS.ttcn

deleted100644 → 0
+0 −31
Original line number Diff line number Diff line
/**
 *  @author     STF 519
 *  @version    $Id: $
 *  @desc       This module provides the PICS used for the S1AP tests.
 *              See ETSI DTS_INT-00135-1
*/

module S1AP_PICS {
    
    group PICS_A2{
        /**
         * @desc Does eNB act as the IUT? 
         * @see  ETSI DTS_INT-00135-1 A.2/1 
         */
        modulepar boolean PICS_S1AP_eNB_IUT := false;
        
        /**
         * @desc Does MME act as the IUT? 
         * @see  ETSI DTS_INT-00135-1 A.2/2 
         */
        modulepar boolean PICS_S1AP_MME_IUT := false;
        
    } // End of group PICS_A2
    
    group PICS_A3 {
    } // End of group PICS_A3
    
    group PICS_A4 { 
    } // End of group PICS_A4
    
} // End of module S1AP_PICS 
 No newline at end of file

ttcn3/S1AP_PIXITS.ttcn

deleted100644 → 0
+0 −98
Original line number Diff line number Diff line
/**
 *  @author     STF 519
 *  @version    $Id: $
 *  @desc       This module provides the PIXIT used for the S1AP tests.
 */

module S1AP_PIXITS {
    // LibCommon
    import from LibCommon_BasicTypesAndValues all;
    
    // LibS1AP
    //import TODO...

    group S1AP_Port_and_addresses{
        
        group S1AP_TS_Port_and_addresses{
            
            /** @desc    
             * IP address of the test system
             */
            modulepar charstring PX_S1AP_MME_ETS_IPADDR := "1.1.1.10";
            
            /** @desc    
             * Port number of the test system
             */
            modulepar integer PX_S1AP_MME_ETS_PORT := 3868;
            
            /** @desc    
             * IP address of the test system
             */
            modulepar charstring PX_S1AP_MME_ETS_IPADDR2 := "1.1.1.11";
            
            /** @desc    
             * Port number of the test system
             */
            modulepar integer PX_S1AP_MME_ETS_PORT2 := 3868;
            
            /** @desc    
             * IP address of the test system
             */
            modulepar charstring PX_S1AP_ENB_ETS_IPADDR := "1.1.1.12";
            
            /** @desc    
             * Port number of the test system
             */
            modulepar integer PX_S1AP_ENB_ETS_PORT := 3868;
            
            /** @desc    
             * IP address of the test system
             */
            modulepar charstring PX_S1AP_ENB_ETS_IPADDR2 := "1.1.1.13";
            
            /** @desc    
             * Port number of the test system
             */
            modulepar integer PX_S1AP_ENB_ETS_PORT2 := 3868;

            
        } // End of group S1AP_TS_Port_and_addresses
        
        group S1AP_SUT_Port_and_addresses{
            
            /** @desc    
             * IP address of the system under test
             */
            modulepar charstring PX_S1AP_MME_SUT_IPADDR := "1.1.2.10";
            
            /** @desc   
             * Port number of the system under test
             */
            modulepar integer PX_S1AP_MME_SUT_PORT := 3868;
            
            /** @desc    
             * IP address of the system under test
             */
            modulepar charstring PX_S1AP_ENB_SUT_IPADDR := "1.1.2.11";
            
            /** @desc    
             * Port number of the system under test
             */
            modulepar integer PX_S1AP_ENB_SUT_PORT := 3868;
            
            
        }//end group S1AP_SUT_Port_and_addresses{
        
    } // End of group S1AP_Port_and_addresses
    
    group S1AP_CommonData{
               
		/** 
	    * @desc    integer for variant selection, 
	    * @see ETSI 
	    */
	    modulepar integer PX_VA := 1;
        
    } // End of group S1AP_CommonData
    
} // End of module S1AP_PIXITS
 No newline at end of file