conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2203_procedure_based_communication / 220304_getreply_operation / NegSyn_220304_getreply_operation_002.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:22.3.4, Verify that error occurs when using index redirection in any port.getreply operation
13 ** @verdict pass reject
14 *****************************************************************/
15 // The following requirements are tested:
16 // Restriction f
17 // The index redirection shall only be used when the operation is used on an any from
18 // port array construct.
19 module NegSyn_220304_getreply_operation_002 {
20
21 signature S();
22
23 type port P procedure {
24 inout S;
25 } with {extension "internal"}
26
27 type component GeneralComp
28 {
29 port P p;
30 }
31
32 function f() runs on GeneralComp
33 {
34 p.getcall(S:?);
35 p.reply(S:{});
36 }
37
38 testcase TC_NegSyn_220304_getreply_operation_002() runs on GeneralComp system GeneralComp {
39 var GeneralComp v_ptc := GeneralComp.create;
40 var integer v_index;
41 connect(self:p, v_ptc:p);
42 p.call(S:{}, nowait);
43 v_ptc.start(f());
44 v_ptc.done;
45 alt
46 {
47 [] any port.getreply -> @index v_index { setverdict(pass); }
48 [else] { setverdict(fail, "The any from getreply operation didn't match for some reason"); }
49 }
50 }
51
52 control {
53 execute(TC_NegSyn_220304_getreply_operation_002(), 5.0);
54 }
55 }
This page took 0.03509 seconds and 5 git commands to generate.