Commit 824244a2 authored by rennoch's avatar rennoch
Browse files

initial control part

parent 836a2925
Loading
Loading
Loading
Loading
+104 −0
Original line number Diff line number Diff line
/**
 *  @author     STF 466
 *  @version    $Id: DiameterS9_TestControl.ttcn3 66 2014-03-14 15:14:51Z garciay $
 *  @desc       This module provides execution part for S9 test cases.
 */

module DiameterS9_TestControl {
    
    // DiameterS9
    import from DiameterS9_PICS all;
    import from DiameterS9_TestCases all;
    
    control {
        
            execute(TC_HPCRF_MS_01());
            
       		execute(TC_HPCRF_HSE_01());
        	execute(TC_HPCRF_HSE_02());
            
        	execute(TC_HPCRF_HSM_01());
        	execute(TC_HPCRF_HSM_02());
        	execute(TC_HPCRF_HSM_03());
        	execute(TC_HPCRF_HSM_04());
            
        	execute(TC_HPCRF_HPQ_01());
        	execute(TC_HPCRF_HPQ_02());  
        	            
        	execute(TC_HPCRF_HST_01());
        	execute(TC_HPCRF_HST_02());
        	execute(TC_HPCRF_HST_03());
        	execute(TC_HPCRF_HST_04());
                	      	                
        	execute(TC_HPCRF_HMB_01());
        	execute(TC_HPCRF_HMB_02());
        	execute(TC_HPCRF_HMB_03());
        	execute(TC_HPCRF_HMB_04());
        	execute(TC_HPCRF_HMB_05());
        	execute(TC_HPCRF_HMB_06());
        	execute(TC_HPCRF_HMB_07());

        	execute(TC_HPCRF_VQR_01());

        	execute(TC_HPCRF_VPQ_01());
        	execute(TC_HPCRF_VPQ_02());
        	execute(TC_HPCRF_VPQ_03());
        	execute(TC_HPCRF_VPQ_04());
        	execute(TC_HPCRF_VPQ_05());
        	
        	execute(TC_HPCRF_VST_01());
        	execute(TC_HPCRF_VST_02());
        	execute(TC_HPCRF_VST_03());
        	execute(TC_HPCRF_VST_04());
        	
        	execute(TC_VPCRF_MS_01());
        	
        	execute(TC_VPCRF_HSE_01());
        	execute(TC_VPCRF_HSE_02());
        	        	
        	execute(TC_VPCRF_HSM_01());
        	execute(TC_VPCRF_HSM_02());
        	execute(TC_VPCRF_HSM_03());
        	execute(TC_VPCRF_HSM_04());
        	        	
        	execute(TC_VPCRF_HPQ_01());
        	execute(TC_VPCRF_HPQ_02());
        	execute(TC_VPCRF_HPQ_03());
        	execute(TC_VPCRF_HPQ_04());
        	        	
        	execute(TC_VPCRF_HST_01());
        	execute(TC_VPCRF_HST_02());
        	execute(TC_VPCRF_HST_03());
        	execute(TC_VPCRF_HST_04());
        	        	
        	execute(TC_VPCRF_HMB_01());
        	execute(TC_VPCRF_HMB_02());
        	execute(TC_VPCRF_HMB_03());
        	execute(TC_VPCRF_HMB_04());
        	execute(TC_VPCRF_HMB_05());
        	execute(TC_VPCRF_HMB_06());
        	execute(TC_VPCRF_HMB_07());

        	execute(TC_VPCRF_HDS_01());
        	
        	execute(TC_VPCRF_HSL_01());                	
        	        	
        	execute(TC_VPCRF_VQR_01());
        	execute(TC_VPCRF_VQR_02());
        	execute(TC_VPCRF_VQR_03());
        	execute(TC_VPCRF_VQR_04());
        	execute(TC_VPCRF_VQR_05());
        	execute(TC_VPCRF_VQR_06());
        	        	
        	execute(TC_VPCRF_VPQ_01());
        	execute(TC_VPCRF_VPQ_02());
        	        	
        	execute(TC_VPCRF_VST_01());
        	execute(TC_VPCRF_VST_02());
        	execute(TC_VPCRF_VST_03());
        	execute(TC_VPCRF_VST_04());
        	execute(TC_VPCRF_VST_05());
        
    } // End of 'Control' statement
    
} // End of module DiameterS9_TestControl 
 No newline at end of file