conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2203_procedure_based_communication / 220305_raise_operation / NegSem_220305_raise_operation_008.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.5, null in the to clause of the raise operation
13 ** @verdict pass reject
14 *****************************************************************/
15 // The following requirements are tested:
16 // No AddressRef shall contain the special value null at the time of the operation.
17
18 module NegSem_220305_raise_operation_008 {
19 signature S() exception(integer);
20
21 type port P procedure {
22 inout S;
23 } with {extension "internal"}
24
25 type component GeneralComp
26 {
27 port P p;
28 }
29
30 function f() runs on GeneralComp
31 {
32 var GeneralComp v_compRef := null;
33 connect(self:p, v_compRef:p);
34 p.getcall(S:{});
35 p.raise(S, 1) to v_compRef;
36 setverdict(pass);
37 }
38
39 testcase TC_NegSem_220305_raise_operation_008() runs on GeneralComp system GeneralComp {
40 var GeneralComp v_ptc := GeneralComp.create;
41 connect(self:p, v_ptc:p);
42 v_ptc.start(f());
43 p.call(S:{}, nowait);
44 // no processing of the exception to avoid possible errors in the catch operation
45 v_ptc.done;
46 }
47
48 control {
49 execute(TC_NegSem_220305_raise_operation_008(), 5.0);
50 }
51 }
This page took 0.032311 seconds and 5 git commands to generate.