conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 20_statement_and_operations_for_alt / 2002_the_alt_statement / Sem_2002_TheAltStatement_012.ttcn
1 /******************************************************************************
2 * Copyright (c) 2000-2016 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Adrien Kirjak – initial implementation
10 *
11 ** @version 0.0.1
12 ** @purpose 1:20.2, Ensure that alt statements are correctly handled for dynamically mapped ports
13 ** @verdict pass accept, ttcn3verdict:pass
14 ***************************************************/
15
16 // Mycompport A is dynamically mapped
17 module Sem_2002_TheAltStatement_012{
18
19 type port loopbackPort message {
20 inout integer
21 } with {extension "internal"}
22
23 type port IntegerOutputPortType message {
24 inout integer
25 } with {extension "internal"}
26
27 type component GeneralComp
28 {
29 port IntegerOutputPortType MycomportA
30 }
31
32 type component MyTestSystemInterface
33 {
34 port loopbackPort messagePort
35 }
36
37 // MyTestSystemInterface is the test system interface
38 testcase TC_Sem_2002_TheAltStatement_012() runs on GeneralComp system MyTestSystemInterface {
39 timer tc_timer := 0.1;
40
41 map(mtc:MycomportA, system:messagePort);
42
43 MycomportA.send(2);
44 tc_timer.start;
45
46 unmap(mtc:MycomportA, system:messagePort);
47 setverdict(pass);
48
49 alt {
50 [] MycomportA.receive {
51 }
52 [] tc_timer.timeout {
53 setverdict(pass);
54 }
55 }
56 }
57 control{
58 execute(TC_Sem_2002_TheAltStatement_012());
59 }
60 }
This page took 0.035258 seconds and 5 git commands to generate.