conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2203_procedure_based_communication / 220303_reply_operation / NegSem_220303_ReplyOperation_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.3, null component in the to clause of the reply 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_220303_ReplyOperation_002 {
20
21
22 signature S();
23
24 type port P procedure {
25 inout S;
26 } with {extension "internal"}
27
28 type component GeneralComp {
29 port P p;
30 }
31
32 function f_server() runs on GeneralComp {
33 var GeneralComp v_compRef := null;
34 connect(self:p, v_compRef:p);
35 p.getcall(S:{});
36 p.reply(S:{}) to v_compRef;
37 }
38
39 testcase TC_NegSem_220303_ReplyOperation_002() runs on GeneralComp system GeneralComp {
40 var GeneralComp v_ptc := GeneralComp.create("PTC");
41 connect(self:p, v_ptc:p);
42 v_ptc.start(f_server());
43 p.call(S:{}, 1.0) {
44 [] p.getreply(S:{}) { }
45 [] p.catch(timeout) { }
46 }
47 setverdict(pass);
48 }
49
50 control{
51 execute(TC_NegSem_220303_ReplyOperation_002(), 5.0);
52 }
53
54 }
This page took 0.038758 seconds and 5 git commands to generate.