conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2202_message_based_communication / 220202_receive_operation / NegSem_220202_ReceiveOperation_022.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.2.2, incompatible from and sender clause
13 ** @verdict pass reject
14 *****************************************************************/
15
16 // The following requirements are tested:
17 // If the receive operation contains both from and sender clause, the variable or parameter
18 // referenced in the sender clause shall be type compatible with the template in the from
19 // clause.
20
21 module NegSem_220202_ReceiveOperation_022 {
22
23 type integer address;
24
25 type port P message {
26 inout integer;
27 } with {extension "internal"}
28
29 type component GeneralComp {
30 port P p;
31 }
32
33 testcase TC_NegSem_220202_ReceiveOperation_022() runs on GeneralComp {
34 var address v_addr;
35
36 connect(self:p, self:p);
37 p.send(100);
38 alt {
39 [] p.receive(integer:?) from GeneralComp:? -> sender v_addr { }
40 [] p.receive {}
41 }
42 setverdict(pass);
43 }
44
45 control {
46 execute(TC_NegSem_220202_ReceiveOperation_022(), 5.0);
47 }
48 }
This page took 0.034172 seconds and 5 git commands to generate.