conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2202_message_based_communication / 220201_send_operation / NegSem_220201_SendOperation_009.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.1, null address in the to clause of send 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_220201_SendOperation_009 {
20
21 type port P message {
22 inout integer;
23 } with {extension "internal"}
24
25 type integer address;
26
27 type component GeneralComp
28 {
29 port P p;
30 }
31
32 testcase TC_NegSem_220201_SendOperation_009() runs on GeneralComp {
33 var address v_addr := null;
34
35 connect(self:p, self:p);
36
37 p.send(1) to v_addr;
38 p.receive(integer:?);
39 setverdict(pass);
40 }
41
42 control {
43 execute(TC_NegSem_220201_SendOperation_009(), 5.0);
44 }
45 }
This page took 0.033983 seconds and 5 git commands to generate.