Example #1
0
 function test_isAbsoluteURL()
 {
     $this->assertTrue(HtmlUtils::isAbsoluteURL('https://google.com/'));
     $this->assertTrue(HtmlUtils::isAbsoluteURL('http://google.com/something?test&z=23#pest=2'));
     $this->assertFalse(HtmlUtils::isAbsoluteURL('test/t.html'));
 }