/** * @group ezurl */ public function testFetchByUrl() { $url = 'http://ez.no/ezpublish'; $urlObj = eZURL::create($url); $urlObj->store(); $urlObj2 = eZURL::fetchByUrl($url); self::assertInstanceOf('eZURL', $urlObj2); }