ItsMapemSpatem_TestControl.ttcn 1.73 KB
Newer Older
1
2
3
4
5
/**
 *    @author   ETSI / STF484
 *    @version  $URL$
 *              $Id$
 *    @desc     Test Control file for MAPEM SPATEM
garciay's avatar
garciay committed
6
7
8
9
 *    @copyright   ETSI Copyright Notification
 *                 No part may be reproduced except as authorized by written permission.
 *                 The copyright and the foregoing restriction extend to reproduction in all media.
 *                 All rights reserved.
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 *
 */
module ItsMapemSpatem_TestControl {
    
    // LibItsMapemSpatem
    import from LibItsMapemSpatem_Pics all;
    
    // ATS MAPSpat
    import from ItsMapem_TestCases all;
    import from ItsSpatem_TestCases all;
    
    // Test Execution
    control {
        
garciay's avatar
garciay committed
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
        if (PICS_MAPEM_GENERATION) {
            execute(TC_IS_RLT_MSGF_BV_01 ());
            execute(TC_IS_RLT_EVGN_BV_01 ());
            execute(TC_IS_RLT_EVGN_BV_02 ());
            
            if (PICS_SPATEM_GENERATION) {
                execute(TC_IS_RLT_COMM_BV_01 ());
            }
            
            execute(TC_IS_RLT_COMM_BV_02_01 ());
            execute(TC_IS_RLT_COMM_BV_02_02 ());
            execute(TC_IS_RLT_COMM_BV_03 ());
        }
        
        if (PICS_SPATEM_GENERATION) {
            execute(TC_IS_TLM_MSGF_BV_01 ());
            execute(TC_IS_TLM_EVGN_BV_01 ());
            execute(TC_IS_TLM_EVGN_BV_02 ());
            execute(TC_IS_TLM_EVGN_BV_03 ());
            execute(TC_IS_TLM_EVGN_BV_04 ());
            
            execute(TC_IS_TLM_COMM_BV_01 ());
            execute(TC_IS_TLM_COMM_BV_02_01 ());
            execute(TC_IS_TLM_COMM_BV_02_02 ());
            execute(TC_IS_TLM_COMM_BV_03 ());
            execute(TC_IS_TLM_MSGF_BV_02 ());
        }
        
52
53
54
    } // End of 'control' statement
    
} // End of module ItsMapemSpatem_TestControl