conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 15_templates / 1503_global_and_local_templates / Sem_1503_GlobalAndLocalTemplates_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:15.3, Ensure that a template values can be accessed with the dot notation as expected.
13 ** @verdict pass accept, ttcn3verdict:pass
14 *****************************************************************/
15
16 module Sem_1503_GlobalAndLocalTemplates_001 {
17
18 type port MyMessagePortType message {
19 inout MyMessageType
20 } with {extension "internal"}
21
22 type component GeneralComp {
23 port MyMessagePortType pt_myPort;
24 }
25
26 type record MyMessageType {
27 integer field1,
28 charstring field2,
29 boolean field3
30 }
31
32 template MyMessageType m_myTemplate := {
33 field1 := 2,
34 field2 := "foobar",
35 field3 := true
36 }
37
38 testcase TC_Sem_1503_GlobalAndLocalTemplates_001() runs on GeneralComp {
39
40 if (match(2,m_myTemplate.field1) and match("foobar", m_myTemplate.field2) and match(true, m_myTemplate.field3)) {
41 setverdict(pass);
42 } else {
43 setverdict(fail);
44 }
45 }
46
47 control{
48 execute(TC_Sem_1503_GlobalAndLocalTemplates_001());
49 }
50 }
This page took 0.034545 seconds and 5 git commands to generate.