Jyxo\Beholder\TestCase\HttpResponse::__construct PHP Метод

__construct() публичный Метод

Constructor. Gets the testing URL and optional custom tests.
public __construct ( string $description, string $url, array $tests = [] )
$description string Test description
$url string Tested URL
$tests array Custom tests
    public function __construct(string $description, string $url, array $tests = [])
    {
        parent::__construct($description);
        $this->url = $url;
        $this->tests = $tests;
    }
HttpResponse