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 Prototype161Test 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.6.1/test/unit/", null);
38 }
39
40
41
42
43 @Override
44 protected String getVersion() {
45 return "1.6.1";
46 }
47
48
49
50
51 @Test
52 public void ajax() throws Exception {
53 test("ajax.html");
54 }
55
56
57
58
59 @Test
60 public void array() throws Exception {
61 test("array.html");
62 }
63
64
65
66
67 @Test
68 public void base() throws Exception {
69 test("base.html");
70 }
71
72
73
74
75 @Test
76 public void clazz() throws Exception {
77 test("class.html");
78 }
79
80
81
82
83 @Test
84 public void date() throws Exception {
85 test("date.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.html");
102 }
103
104
105
106
107
108
109 @Test
110 public void elementMixins() throws Exception {
111 test("element_mixins.html");
112 }
113
114
115
116
117 @Test
118 public void enumerable() throws Exception {
119 test("enumerable.html");
120 }
121
122
123
124
125 @Test
126 public void event() throws Exception {
127 test("event.html");
128 }
129
130
131
132
133 @Test
134 public void form() throws Exception {
135 test("form.html");
136 }
137
138
139
140
141 @Test
142 public void function() throws Exception {
143 test("function.html");
144 }
145
146
147
148
149 @Test
150 public void hash() throws Exception {
151 test("hash.html");
152 }
153
154
155
156
157 @Test
158 public void number() throws Exception {
159 test("number.html");
160 }
161
162
163
164
165 @Test
166 public void periodicalExecuter() throws Exception {
167 test("periodical_executer.html");
168 }
169
170
171
172
173 @Test
174 public void position() throws Exception {
175 test("position.html");
176 }
177
178
179
180
181 @Test
182 public void prototype() throws Exception {
183 test("prototype.html");
184 }
185
186
187
188
189 @Test
190 public void range() throws Exception {
191 test("range.html");
192 }
193
194
195
196
197 @Test
198 public void regexp() throws Exception {
199 test("regexp.html");
200 }
201
202
203
204
205 @Test
206 public void selector() throws Exception {
207 test("selector.html");
208 }
209
210
211
212
213 @Test
214 public void string() throws Exception {
215
216
217 }
218
219
220
221
222 @Test
223 public void object() throws Exception {
224 test("object.html");
225 }
226
227
228
229
230
231 @Test
232 public void unitTests() throws Exception {
233 test("unittest.html");
234 }
235 }