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