conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 05_basic_language_elements / 0504_parametrization / 050402_actual_parameters / NegSem_050402_actual_parameters_108.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:5.4.2, verify that incompatible values cannot be passed from out formal parameters
13 ** @verdict pass reject
14 ***************************************************/
15
16 // The following requirement is tested:
17 // The type of each actual parameter shall be compatible with the type of each
18 // corresponding formal parameter.
19
20 module NegSem_050402_actual_parameters_108 {
21
22 type component GeneralComp {
23 }
24
25 type record R1 {
26 integer field1,
27 integer field2 optional
28 }
29
30 type record R2 {
31 integer elem1,
32 integer elem2
33 }
34
35 function f_test (out R1 p_val) {
36 p_val.field1 := 1;
37 p_val.field2 := 2;
38 }
39
40 testcase TC_NegSem_050402_actual_parameters_108() runs on GeneralComp {
41 var R2 v_rec;
42 f_test(v_rec);
43 if (v_rec == { elem1 := 1, elem2 := 2 }) { setverdict(pass); }
44 else { setverdict(fail); }
45 }
46
47 control {
48 execute(TC_NegSem_050402_actual_parameters_108());
49 }
50 }
This page took 0.03207 seconds and 5 git commands to generate.