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