Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / XML / HM60295 / tester.ttcn
1 /******************************************************************************
2 * Copyright (c) 2000-2015 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 module tester {
9
10 import from www_example_org_Schema1 all;
11 import from www_example_org_Schema2 all;
12 import from XSD all;
13
14 type component S {}
15
16 const www_example_org_Schema1.CT ct_one := { "42" }
17 const www_example_org_Schema2.CT ct_two := { 13 }
18
19
20 testcase tc1() runs on S
21 {
22 setverdict(pass);
23 }
24
25 control {
26 execute(tc1());
27 }
28
29 }
This page took 0.032406 seconds and 5 git commands to generate.