1 54 package org.w3c.tidy; 55 56 import java.net.URL ; 57 58 59 67 public class TidyBugsTest extends TidyTestCase 68 { 69 70 74 public TidyBugsTest(String name) 75 { 76 super(name); 77 } 78 79 84 public void test431895() throws Exception  85 { 86 URL inputURL = getClass().getClassLoader().getResource("431895.html"); 87 Tidy tidyInstance = new Tidy(); 88 tidyInstance.mainExec(new String []{"-qe", cleanUpFilePath(inputURL.getFile())}); 89 90 } 92 93 } | Popular Tags |