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