Commit c783eaf8 authored by tepelmann's avatar tepelmann
Browse files

Added T3doc to upper tester events.

Corrected TC_CAM_INA_CLW_BV_01, TC_CAM_INA_CLW_BV_02.
parent 7e2d249d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -46,7 +46,7 @@ module LibItsCam_Templates {
            }
            }
            
            
            /**
            /**
             * @desc Change the position
             * @desc Change the position in the direction of the current heading
             * @param p_offset Offset to the current position
             * @param p_offset Offset to the current position
             */
             */
            template (value) UtCamEvent m_changePosition(integer p_offset) := {
            template (value) UtCamEvent m_changePosition(integer p_offset) := {
+34 −0
Original line number Original line Diff line number Diff line
@@ -67,19 +67,53 @@ module LibItsCam_TypesAndValues {


    group utPrimitives {
    group utPrimitives {
        
        
        /**
         * @desc Trigger to initialize the IUT.
         */
        type record UtCamInitialize {
        type record UtCamInitialize {
        }
        }
        
        
        /**
         * @desc Trigger the given event at the application layer of the IUT.
         * @member utEvent
         */
        type record UtCamTrigger {
        type record UtCamTrigger {
            UtCamEvent utEvent
            UtCamEvent utEvent
        }
        }
        
        
        /**
         * @desc Check the given event at the application layer of the IUT.
         * @member utEvent
         */
        type record UtCamCheck {
        type record UtCamCheck {
            CamPdu utEvent
            CamPdu utEvent
        }
        }
        
        
        /**
         * @desc The result of the checked event at the application layer
         */
        type boolean UtCamResult;
        type boolean UtCamResult;
        
        
        /**
         * @desc Events at the application layer of the IUT.
         * @member changeHeading Changes the heading .
         * @member changePosition Changes the position in the direction of the current heading in meters.
         * @member changeSpeed Changes the speed.
         * @member setCrashSignal Sets the crash signal.
         * @member setDangerousGoodsStatus Sets the dangerous goods status.
         * @member setLengthWidthPrecision Sets the length width precision.
         * @member setDistanceToStopLine Set the distance to the stop line.
         * @member setTurnAdvice Sets the turn advice.
         * @member changeCurvature Changes the curvature.
         * @member setOccupancy Sets the occupancy.
         * @member setDoorStatus Sets the door status.
         * @member setLightBarStatus Sets the light bar status.
         * @member setSireneStatus Sets the sirene status.
         * @member setTrafficLightPriority Sets the traffic light priority.
         * @member setScheduleDeviation Sets the schedule deviation.
         * @member setPtLineDescription Sets the PT line description.
         * @member setExteriorLightsStatus Sets the extirior lights status.
         */
        type union UtCamEvent {
        type union UtCamEvent {
            Direction changeHeading,
            Direction changeHeading,
            integer changePosition,
            integer changePosition,