TestCase::dontSeeCredentials()

$this dontSeeCredentials(array $credentials, string|null $guard = null) Assert that the given credentials are invalid. Parameters array $credentials string|null $guard Return Value $this

TestCase::dontSeeInField()

$this dontSeeInField(string $selector, string $value) Assert that an input field does not contain the given value. Parameters string $selector string $value Return Value $this

TestCase::deleteJson()

$this deleteJson(string $uri, array $data = array(), array $headers = array()) Visit the given URI with a DELETE request, expecting a JSON response. Parameters string $uri array $data array $headers Return Value $this

TestCase::doesntExpectModelEvents()

$this doesntExpectModelEvents(string $model, array|string $events) Specify a list of events that should not be fired for the given operation. These events will be mocked, so that handlers will not actually be executed. Parameters string $model array|string $events Return Value $this Exceptions Exception

TestCase::dontSee()

$this dontSee(string $text) Assert that a given string is not seen on the current HTML. Parameters string $text Return Value $this

TestCase::doesntExpectEvents()

$this doesntExpectEvents(array|string $events) Specify a list of events that should not be fired for the given operation. These events will be mocked, so that handlers will not actually be executed. Parameters array|string $events Return Value $this

TestCase::delete()

$this delete(string $uri, array $data = array(), array $headers = array()) Visit the given URI with a DELETE request. Parameters string $uri array $data array $headers Return Value $this

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

TestCase::createApplication()

abstract HttpKernelInterface createApplication() Creates the application. Needs to be implemented by subclasses. Return Value HttpKernelInterface

TestCase::be()

void be(Authenticatable $user, string|null $driver = null) Set the currently logged in user for the application. Parameters Authenticatable $user string|null $driver Return Value void