1 54 package org.w3c.tidy; 55 56 import java.io.File ; 57 import java.text.NumberFormat ; 58 59 60 65 public class TidyCrashingBugsTest extends TidyTestCase 66 { 67 68 72 public TidyCrashingBugsTest(String name) 73 { 74 super(name); 75 } 76 77 81 public void test427664() throws Exception 82 { 83 executeTidyTest("427664.html"); 84 } 85 86 90 public void test427671() throws Exception 91 { 92 executeTidyTest("427671.html"); 93 } 94 95 99 public void test427675() throws Exception 100 { 101 executeTidyTest("427675.html"); 102 } 103 104 108 public void test427676() throws Exception 109 { 110 executeTidyTest("427676.html"); 111 } 112 113 117 public void test427672() throws Exception 118 { 119 executeTidyTest("427672.html"); 120 } 121 122 126 public void test426885() throws Exception 127 { 128 executeTidyTest("426885.html"); 129 } 130 131 135 public void test427811() throws Exception 136 { 137 executeTidyTest("427811.html"); 138 } 139 140 144 public void test427813() throws Exception 145 { 146 executeTidyTest("427813.html"); 147 } 148 149 153 public void test427816() throws Exception 154 { 155 executeTidyTest("427816.html"); 156 } 157 158 162 public void test427818() throws Exception 163 { 164 executeTidyTest("427818.html"); 165 } 166 167 171 public void test427840() throws Exception 172 { 173 executeTidyTest("427840.html"); 174 } 175 176 180 public void test427841() throws Exception 181 { 182 executeTidyTest("427841.html"); 183 } 184 185 189 public void test431716() throws Exception 190 { 191 executeTidyTest("431716.html"); 192 193 NumberFormat numberFormat = NumberFormat.getInstance(); 195 numberFormat.setMinimumIntegerDigits(3); 196 for (int j = 1; j <= 26; j++) 197 { 198 String slide = "slide" + numberFormat.format(j) + ".html"; 199 (new File (slide)).delete(); 200 } 201 } 202 203 207 public void test443362() throws Exception 208 { 209 executeTidyTest("443362.html"); 210 } 211 212 216 public void test433856() throws Exception 217 { 218 executeTidyTest("433856.html"); 219 } 220 221 225 public void test532535() throws Exception 226 { 227 executeTidyTest("532535.html"); 228 } 229 230 234 public void test539369() throws Exception 235 { 236 executeTidyTest("539369.html"); 237 } 238 239 243 public void test539369a() throws Exception 244 { 245 executeTidyTest("539369a.html"); 246 } 247 248 252 public void test540296() throws Exception 253 { 254 executeTidyTest("540296.html"); 255 } 256 257 261 public void test542029() throws Exception 262 { 263 executeTidyTest("542029.html"); 264 } 265 266 270 public void test572154() throws Exception 271 { 272 executeTidyTest("572154.html"); 273 } 274 275 279 public void test543262() throws Exception 280 { 281 executeTidyTest("543262.html"); 282 } 283 284 288 public void test545772() throws Exception 289 { 290 executeTidyTest("545772.html"); 291 } 292 293 297 public void test566542() throws Exception 298 { 299 executeTidyTest("566542.html"); 300 } 301 302 306 public void test570027() throws Exception 307 { 308 executeTidyTest("570027.html"); 309 } 310 311 315 public void test588061() throws Exception 316 { 317 executeTidyTest("588061.html"); 318 } 319 320 324 public void test661606() throws Exception 325 { 326 executeTidyTest("661606.html"); 327 } 328 329 333 public void test671087() throws Exception 334 { 335 executeTidyTest("671087.html"); 336 } 337 338 342 public void test676205() throws Exception 343 { 344 executeTidyTest("676205.html"); 345 } 346 347 351 public void test679135() throws Exception 352 { 353 executeTidyTest("679135.html"); 354 } 355 356 360 public void test696799() throws Exception 361 { 362 executeTidyTest("696799.html"); 363 } 364 365 369 public void test788031() throws Exception 370 { 371 executeTidyTest("788031.html"); 372 } 373 374 378 public void test837023() throws Exception 379 { 380 executeTidyTest("837023.html"); 381 } 382 383 387 public void test991469() throws Exception 388 { 389 executeTidyTest("991469.xml"); 390 } 391 392 396 public void test991471() throws Exception 397 { 398 executeTidyTest("991471.xml"); 399 } 400 401 405 public void test1003994() throws Exception 406 { 407 executeTidyTest("1003994.xml"); 408 assertLogDoesntContains("{"); 409 } 410 411 415 public void test1020806() throws Exception 416 { 417 org.w3c.dom.Document doc = parseDomTest("1020806.html"); 418 tidy.pprint(doc, System.out); 419 } 420 421 425 public void test1020806b() throws Exception 426 { 427 org.w3c.dom.Document doc = parseDomTest("1020806b.html"); 428 tidy.pprint(doc, System.out); 429 } 430 431 435 public void test1033035() throws Exception 436 { 437 executeTidyTest("1033035.html"); 438 } 439 440 } | Popular Tags |