conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 05_basic_language_elements / 0502_scope_rules / 0502_toplevel / NegSem_0502_Scope_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 ** @desc Test cases for clause 5.2 Scope rules
13 ** @purpose 1:5.2, Ensure that the IUT correctly handles definitions of local scope
14 ** @verdict pass reject
15 ***************************************************/
16 module NegSem_0502_Scope_001 {
17
18 type component GeneralComp {
19 var integer vc_component := 0;
20 }
21
22 function f_funcScope() runs on GeneralComp {
23 var integer v_function := 0;
24 }
25
26 testcase TC_NegSem_0502_Scope_001() runs on GeneralComp {
27 f_funcScope();
28 if ( match(v_function, 0) ){
29 }
30 }
31
32 control{
33 var integer v_control := 0;
34 execute(TC_NegSem_0502_Scope_001());
35 }
36
37 }
This page took 0.031187 seconds and 5 git commands to generate.