LibItsCam_Functions.ttcn 681 Bytes
Newer Older
/**
 *	@author 	ETSI / STF405
berge's avatar
berge committed
 *  @version 	$URL$
 *				$Id$
 *	@desc		Module containing functions for CAM
 *
 */
module LibItsCam_Functions {
    // LibIts
    import from LibIts_TestSystem all;
    import from LibIts_Interface all; 
    /**
     * @desc 	Create Facility component and connects CAM port
     * @param	p_camPtc returned Facility component variable
     */    
    function f_cfCamUp(out ItsFa p_camPtc) {
        
        // Create Facility component
        p_camPtc := ItsFa.create("CAM Tester");
        
        // map ports
        map(p_camPtc:camPort, system:camPort);
        
    }
        
} // end LibItsCam_Functions