TestCase::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

TestCase::assertViewHasAll()

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

TestCase::assertViewMissing()

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

TestCase::assertSessionHasErrors()

void assertSessionHasErrors(string|array $bindings = array(), mixed $format = null) Assert that the session has errors bound. Parameters string|array $bindings mixed $format Return Value void

TestCase::assertSessionHasAll()

void assertSessionHasAll(array $bindings) Assert that the session has a given list of values. Parameters array $bindings Return Value void

TestCase::assertSessionMissing()

void assertSessionMissing(string|array $key) Assert that the session does not have a given key. Parameters string|array $key Return Value void

TestCase::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

TestCase::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

TestCase::assertSessionHas()

void assertSessionHas(string|array $key, mixed $value = null) Assert that the session has a given value. Parameters string|array $key mixed $value Return Value void

TestCase::assertResponseStatus()

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