conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 15_templates / 1503_global_and_local_templates / Syn_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 global parameterized template is accepted.
13 ** @verdict pass accept, noexecution
14 *****************************************************************/
15
16 module Syn_1503_GlobalAndLocalTemplates_001 {
17
18 type record MyMessageType {
19 integer field1,
20 charstring field2,
21 boolean field3
22 }
23
24 template MyMessageType m_myTemplate(integer p_myFormalParam):= {
25 field1 := p_myFormalParam,
26 field2 := pattern "abc*xyz",
27 field3 := true
28 }
29
30 type component GeneralComp {}
31
32 testcase TC_Syn_1503_GlobalAndLocalTemplates_001() runs on GeneralComp
33 { setverdict(pass); }
34
35 control
36 { execute(TC_Syn_1503_GlobalAndLocalTemplates_001()); }
37
38 }
This page took 0.032897 seconds and 5 git commands to generate.