MakesHttpRequests::callSecure()

Response callSecure(string $method, string $uri, array $parameters = array(), array $cookies = array(), array $files = array(), array $server = array(), string $content = null) Call the given HTTPS URI and return the Response. Parameters string $method string $uri array $parameters array $cookies array $files array $server string $content Return Value Response

MakesHttpRequests::call()

Response call(string $method, string $uri, array $parameters = array(), array $cookies = array(), array $files = array(), array $server = array(), string $content = null) Call the given URI and return the Response. Parameters string $method string $uri array $parameters array $cookies array $files array $server string $content Return Value Response

MakesHttpRequests::assertViewMissing()

$this assertViewMissing(string $key) Assert that the response view is missing a piece of bound data. Parameters string $key Return Value $this

MakesHttpRequests::assertViewHasAll()

$this assertViewHasAll(array $bindings) Assert that the view has a given list of bound data. Parameters array $bindings Return Value $this

MakesHttpRequests::assertViewHas()

$this assertViewHas(string|array $key, mixed $value = null) Assert that the response view has a given piece of bound data. Parameters string|array $key mixed $value Return Value $this

MakesHttpRequests::assertResponseStatus()

$this assertResponseStatus(int $code) Assert that the client response has a given code. Parameters int $code Return Value $this

MakesHttpRequests::assertResponseOk()

$this assertResponseOk() Assert that the client response has an OK status code. Return Value $this

MakesHttpRequests::assertRedirectedToRoute()

$this assertRedirectedToRoute(string $name, array $parameters = array(), array $with = array()) Assert whether the client was redirected to a given route. Parameters string $name array $parameters array $with Return Value $this

MakesHttpRequests::assertRedirectedToAction()

$this assertRedirectedToAction(string $name, array $parameters = array(), array $with = array()) Assert whether the client was redirected to a given action. Parameters string $name array $parameters array $with Return Value $this

MakesHttpRequests::assertRedirectedTo()

$this assertRedirectedTo(string $uri, array $with = array()) Assert whether the client was redirected to a given URI. Parameters string $uri array $with Return Value $this