197198199200201202203
public void test10() throws ParserException { assertEquals( "test10 failed", "https:h", (new LinkProcessor()).extract("https:h", baseURI)); }
205206207208209210211
public void test11() throws ParserException { assertEquals( "test11 failed", "http://a/b/c/g#s", (new LinkProcessor()).extract("g#s", baseURI)); }
212213214215216217218
public void test12() throws ParserException { assertEquals( "test12 failed", "http://a/b/c/g?y#s", (new LinkProcessor()).extract("g?y#s", baseURI)); }
219220221222223224225
public void test13() throws ParserException { assertEquals( "test13 failed", "http://a/b/c/;x", (new LinkProcessor()).extract(";x", baseURI)); }
226227228229230231232
public void test14() throws ParserException { assertEquals( "test14 failed", "http://a/b/c/g;x", (new LinkProcessor()).extract("g;x", baseURI)); }
233234235236237238239
public void test15() throws ParserException { assertEquals( "test15 failed", "http://a/b/c/g;x?y#s", (new LinkProcessor()).extract("g;x?y#s", baseURI)); }
240241242243244245246
public void test16() throws ParserException { assertEquals( "test16 failed", "http://a/b/c/", (new LinkProcessor()).extract(".", baseURI)); }
247248249250251252253
public void test17() throws ParserException { assertEquals( "test17 failed", "http://a/b/c/", (new LinkProcessor()).extract("./", baseURI)); }
254255256257258259260
public void test18() throws ParserException { assertEquals( "test18 failed", "http://a/b/", (new LinkProcessor()).extract("..", baseURI)); }
261262263264265266267
public void test19() throws ParserException { assertEquals( "test19 failed", "http://a/b/", (new LinkProcessor()).extract("../", baseURI)); }