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