Sync with 5.2.0
[deliverable/titan.core.git] / regression_test / XML / NegativeTest / runner.ttcn
CommitLineData
970ed795
EL
1/******************************************************************************
2 * Copyright (c) 2000-2014 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 ******************************************************************************/
8module runner {
9
10import from uni { testcase all }
11import from rec { testcase all }
12import from rec_of { testcase all }
13import from exer_rec { testcase all }
14import from exer_rec_of { testcase all }
15import from exer_uni { testcase all }
16
17control // the only control part in the system
18{
19 // testcases imported from rec
20 execute(plain());
21 execute(before());
22 execute(before_named());
23 execute(before_raw());
24 execute(replacer());
25 execute(after());
26 execute(omitter());
27
28 // testcase from rec_of
29 execute(rof_plain());
30
31 execute(rof_before());
32 execute(rof_before_raw());
33
34 execute(rof_replacer());
35 execute(rof_replacer_raw());
36
37 execute(rof_after());
38 execute(rof_after_raw());
39
40 // testcase imported from uni
41 execute(u_plain());
42 execute(u_replace());
43 execute(u_before_embedded());
44
45 // testcases imporeted from exer_rec_of
46 execute(exer_recof_plain());
47 execute(exer_recof_before0());
48
49 execute(aa_plain());
50 execute(aa_before0());
51 execute(aa_replace0());
52 execute(aa_after());
53
54 // testcases imported from exer_rec
55 execute(exer_rec_plain());
56 execute(exer_rec_before());
57
58 execute(exer_attr());
59 execute(exer_attr_before1());
60 execute(exer_attr_before1raw());
61
62 execute(exer_attr_replace2());
63 execute(exer_attr_replace2raw());
64
65 execute(exer_attr_after2());
66 execute(exer_attr_after2raw());
67
68 execute(exer_attr_omit1());
69 execute(exer_attr_omit_all_before());
70 execute(exer_attr_omit_all_after());
71
72 execute(exer_qname_plain());
73 execute(exer_qname_before());
74 execute(exer_qname_replace());
75 execute(exer_qname_after());
76
77 execute(uo_plain());
78 execute(uo_omit());
79 execute(uo_omit_after());
80
81 execute(unil_plain());
82 execute(unil_present_to_omit());
83 execute(unil_absent_to_present());
84
85 // from exer_uni
86 execute(ut_plain());
87 execute(ut_replace());
88 execute(ut_nested_plain());
89 execute(ut_nested_replace());
90 execute(uu_plain());
91}
92
93}
This page took 0.029075 seconds and 5 git commands to generate.