1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package org.htmlunit.libraries;
16
17 import org.htmlunit.WebServerTestCase;
18 import org.htmlunit.junit.BrowserRunner;
19 import org.junit.BeforeClass;
20 import org.junit.Test;
21 import org.junit.runner.RunWith;
22
23
24
25
26
27
28
29 @RunWith(BrowserRunner.class)
30 public class Prototype171Test extends PrototypeTestBase {
31
32
33
34
35 @BeforeClass
36 public static void aaa_startSesrver() throws Exception {
37 SERVER_ = WebServerTestCase.createWebServer("src/test/resources/libraries/prototype/1.7.1/test/unit/", null);
38 }
39
40
41
42
43 @Override
44 protected String getVersion() {
45 return "1.7.1";
46 }
47
48
49
50
51 @Test
52 public void ajax() throws Exception {
53 test("ajax_test.html");
54 }
55
56
57
58
59 @Test
60 public void array() throws Exception {
61 test("array_test.html");
62 }
63
64
65
66
67 @Test
68 public void base() throws Exception {
69 test("base_test.html");
70 }
71
72
73
74
75 @Test
76 public void clazz() throws Exception {
77 test("class_test.html");
78 }
79
80
81
82
83 @Test
84 public void date() throws Exception {
85 test("date_test.html");
86 }
87
88
89
90
91
92
93
94
95
96
97
98
99 @Test
100 public void dom() throws Exception {
101 test("dom_test.html");
102 }
103
104
105
106
107
108
109 @Test
110 public void elementMixins() throws Exception {
111 test("element_mixins_test.html");
112 }
113
114
115
116
117 @Test
118 public void enumerable() throws Exception {
119 test("enumerable_test.html");
120 }
121
122
123
124
125 @Test
126 public void eventHandler() throws Exception {
127 test("event_handler_test.html");
128 }
129
130
131
132
133 @Test
134 public void event() throws Exception {
135 test("event_test.html");
136 }
137
138
139
140
141 @Test
142 public void form() throws Exception {
143 test("form_test.html");
144 }
145
146
147
148
149 @Test
150 public void function() throws Exception {
151 test("function_test.html");
152 }
153
154
155
156
157 @Test
158 public void hash() throws Exception {
159 test("hash_test.html");
160 }
161
162
163
164
165 @Test
166 public void layout() throws Exception {
167 test("layout_test.html");
168 }
169
170
171
172
173 @Test
174 public void number() throws Exception {
175 test("number_test.html");
176 }
177
178
179
180
181 @Test
182 public void object() throws Exception {
183 test("object_test.html");
184 }
185
186
187
188
189 @Test
190 public void periodicalExecuter() throws Exception {
191 test("periodical_executer_test.html");
192 }
193
194
195
196
197 @Test
198 public void position() throws Exception {
199 test("position_test.html");
200 }
201
202
203
204
205 @Test
206 public void prototype() throws Exception {
207 test("prototype_test.html");
208 }
209
210
211
212
213 @Test
214 public void range() throws Exception {
215 test("range_test.html");
216 }
217
218
219
220
221 @Test
222 public void regexp() throws Exception {
223 test("regexp_test.html");
224 }
225
226
227
228
229 @Test
230 public void selectorEngine() throws Exception {
231 test("selector_engine_test.html");
232 }
233
234
235
236
237 @Test
238 public void selector() throws Exception {
239 test("selector_test.html");
240 }
241
242
243
244
245 @Test
246 public void string() throws Exception {
247
248
249 }
250
251
252
253
254
255 @Test
256 public void unitTests() throws Exception {
257 test("unittest_test.html");
258 }
259 }