conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2203_procedure_based_communication / 220302_getcall_operation / NegSem_220302_GetcallOperation_010.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.2, null component in the multicast list of the from clause of the getcall operation
13 ** @verdict pass reject
14 *****************************************************************/
15
16 // The following requirements are tested:
17 // No AddressRef shall contain the special value null at the time of the operation.
18
19 module NegSem_220302_GetcallOperation_010 {
20
21 signature S();
22
23 type port P procedure {
24 inout S;
25 } with {extension "internal"}
26
27 type component GeneralComp {
28 port P p;
29 }
30
31 function f() runs on GeneralComp
32 {
33 var GeneralComp v_compRef := null;
34
35 alt {
36 [] p.getcall(S:{}) from (v_compRef, mtc)
37 { setverdict(fail, "first branch, v_compRef: ", v_compRef)} // error expected
38 [] p.getcall(S:{}) { setverdict(pass, "second branch: ", v_compRef); }
39 }
40 }
41
42 testcase TC_NegSem_220302_GetcallOperation_010() runs on GeneralComp system GeneralComp {
43 var GeneralComp v_ptc := GeneralComp.create;
44 connect(self:p, v_ptc:p);
45 p.call(S:{}, nowait);
46 v_ptc.start(f());
47 v_ptc.done;
48 setverdict(pass);
49 }
50
51 control {
52 execute(TC_NegSem_220302_GetcallOperation_010(), 5.0);
53 }
54 }
This page took 0.03924 seconds and 5 git commands to generate.