conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 21_configuration_operations / 2101_connection_operations / 210101_connect_and_map_operations / NegSem_210101_connect_operation_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:21.1.1, Ensure that the the IUT does not allow connecting incompatible ports
13 ** @verdict pass reject
14 ***************************************************/
15 //Test the two input port cannot connect
16 module NegSem_210101_connect_operation_002{
17
18 type port myport message {
19 in integer
20 } with {extension "internal"}
21
22 type component Mysystem
23 {
24 port myport messagePort;
25 }
26
27 testcase TC_NegSem_210101_connect_operation_002() runs on Mysystem system Mysystem {
28 var Mysystem MyCompA;
29 var Mysystem MyCompB;
30
31 MyCompA:=Mysystem.create;
32 MyCompB:=Mysystem.create;
33
34 //connect(MyCompA:messagePort, MyCompB:messagePort); //not allowed messageports are output
35 connect(self:messagePort, self:messagePort);
36
37 messagePort.send(5);
38
39 }
40
41 control{
42 execute(TC_NegSem_210101_connect_operation_002());
43 }
44 }
45
This page took 0.036913 seconds and 5 git commands to generate.