45464748495051
super(name); } protected void setUp() { lp = new LinkProcessor(); }
134135136137138139140
public void test1() throws ParserException { assertEquals( "test1 failed", "https:h", (new LinkProcessor()).extract("https:h", baseURI)); }
141142143144145146147
public void test2() throws ParserException { assertEquals( "test2 failed", "http://a/b/c/g", (new LinkProcessor()).extract("g", baseURI)); }
148149150151152153154
public void test3() throws ParserException { assertEquals( "test3 failed", "http://a/b/c/g", (new LinkProcessor()).extract("./g", baseURI)); }
155156157158159160161
public void test4() throws ParserException { assertEquals( "test4 failed", "http://a/b/c/g/", (new LinkProcessor()).extract("g/", baseURI)); }
162163164165166167168
public void test5() throws ParserException { assertEquals( "test5 failed", "http://a/g", (new LinkProcessor()).extract("/g", baseURI)); }
169170171172173174175
public void test6() throws ParserException { assertEquals( "test6 failed", "http://g", (new LinkProcessor()).extract("//g", baseURI)); }
176177178179180181182
public void test7() throws ParserException { assertEquals( "test7 failed", "http://a/b/c/?y", (new LinkProcessor()).extract("?y", baseURI)); }
183184185186187188189
public void test8() throws ParserException { assertEquals( "test8 failed", "http://a/b/c/g?y", (new LinkProcessor()).extract("g?y", baseURI)); }
190191192193194195196
public void test9() throws ParserException { assertEquals( "test9 failed", "https:h", (new LinkProcessor()).extract("https:h", baseURI)); }