mageekguy\atoum\report\fields\runner\coverage\html::getRootUrl PHP Method

getRootUrl() public method

public getRootUrl ( )
    public function getRootUrl()
    {
        return $this->rootUrl;
    }

Usage Example

Exemplo n.º 1
0
 public function testSetRootUrl()
 {
     $this->if($field = new testedClass(uniqid(), uniqid(), uniqid()))->then->object($field->setRootUrl($rootUrl = uniqid()))->isIdenticalTo($field)->string($field->getRootUrl())->isIdenticalTo($rootUrl)->object($field->setRootUrl($rootUrl = rand(1, PHP_INT_MAX)))->isIdenticalTo($field)->string($field->getRootUrl())->isIdenticalTo((string) $rootUrl)->object($field->setRootUrl(($rootUrl = uniqid()) . '/'))->isIdenticalTo($field)->string($field->getRootUrl())->isIdenticalTo($rootUrl . '/');
 }
All Usage Examples Of mageekguy\atoum\report\fields\runner\coverage\html::getRootUrl