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_003.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, type mismatch in redirect value assignment
13 ** @verdict pass reject
14 *****************************************************************/
15
16 // The following requirements are tested:
17 // The variable or formal parameter shall be type compatible with the received message.
18
19 module NegSem_220202_ReceiveOperation_003 {
20
21 type port P message {
22 inout integer, charstring;
23 } with {extension "internal"}
24
25 type component GeneralComp
26 {
27 port P p;
28 }
29
30 testcase TC_NegSem_220202_ReceiveOperation_003() runs on GeneralComp {
31 var charstring v_str;
32
33 connect(self:p, self:p);
34
35 p.send(1);
36 alt {
37 [] p.receive(integer:?) -> value v_str { setverdict(pass); }
38 // error (type mismatch in redirect assignment)
39 [] p.receive { setverdict(pass); }
40 }
41 }
42
43 control {
44 execute(TC_NegSem_220202_ReceiveOperation_003(), 5.0);
45 }
46 }
This page took 0.032528 seconds and 5 git commands to generate.