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_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.2.2, attempting to store component name in redirect assignment
13 ** @verdict pass reject
14 *****************************************************************/
15
16 // The following requirements are tested:
17 // When the message is received on a connected port, only the component reference is
18 // stored in the following the sender keyword, but the test system shall internally
19 // store the component name too, if any (to be used in logging).
20
21 module NegSem_220202_ReceiveOperation_010 {
22
23 type port P message {
24 inout integer;
25 } with {extension "internal"}
26
27 type component GeneralComp {
28 port P p;
29 }
30
31 testcase TC_NegSem_220202_ReceiveOperation_010() runs on GeneralComp system GeneralComp {
32 var charstring v_name;
33 connect(self:p, self:p);
34 p.send(10);
35 p.receive(integer:?) -> sender v_name;
36 if (v_name == "MTC") { setverdict(pass); }
37 else { setverdict(fail); }
38 }
39
40 control {
41 execute(TC_NegSem_220202_ReceiveOperation_010(), 5.0);
42 }
43 }
This page took 0.047719 seconds and 5 git commands to generate.