conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 05_basic_language_elements / 0504_parametrization / 050402_actual_parameters / Sem_050402_actual_parameters_183.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 compatible values can be passed to in formal parameters
13 ** @verdict pass accept, ttcn3verdict:pass
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 Sem_050402_actual_parameters_183 {
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 optional
33 }
34
35 function f_test (R1 p_val) {
36 if (p_val == { field1 := 1, field2 := 2 }) { setverdict(pass); }
37 else { setverdict(fail); }
38 }
39
40 testcase TC_Sem_050402_actual_parameters_183() runs on GeneralComp {
41 var R2 v_rec := { 1, 2 };
42 f_test(v_rec);
43 }
44
45 control {
46 execute(TC_Sem_050402_actual_parameters_183());
47 }
48 }
This page took 0.032311 seconds and 5 git commands to generate.