Gc\User\VisitorTest::testGetUrlId PHP Méthode

testGetUrlId() public méthode

Test
public testGetUrlId ( ) : void
Résultat void
    public function testGetUrlId()
    {
        $this->assertInternalType('integer', (int) $this->object->getUrlId('/something', null));
        //Existing url
        $this->assertInternalType('integer', (int) $this->object->getUrlId('/something', null));
        //with referer
        $this->assertInternalType('integer', (int) $this->object->getUrlId('/something', '/somewhat'));
    }