conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 21_configuration_operations / 2101_connection_operations / 210102_disconnect_and_unmap_operations / NegSem_210102_disconnect_and_unmap_operations_001.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.2, Verify that unmap operation cannot contain a system port reference
13 ** @verdict pass reject
14 ***************************************************/
15
16 // The following requirements are tested:
17 // The disconnect and unmap operations are the opposite operations of connect and map.
18 // (21.1) The ports of a test component can be connected to other components or to the
19 // ports of the test system interface. When connecting a test component to a test system
20 // interface the map operation shall be used.
21
22 module NegSem_210102_disconnect_and_unmap_operations_001 {
23
24 type port P message {
25 inout integer
26 } with {extension "internal"}
27
28 type component GeneralComp
29 {
30 port P p;
31 }
32
33 testcase TC_NegSem_210102_disconnect_and_unmap_operations_001() runs on GeneralComp system GeneralComp {
34 var GeneralComp v_ptc := GeneralComp.create;
35
36 connect(self:p, v_ptc:p);
37 unmap(self:p, v_ptc:p); // no system port reference: error expected
38 }
39
40 control{
41 execute(TC_NegSem_210102_disconnect_and_unmap_operations_001());
42 }
43 }
44
This page took 0.032577 seconds and 5 git commands to generate.