TestCase::dontSeeElement()

$this dontSeeElement(string $selector, array $attributes = array()) Assert that an element is not present on the page. Parameters string $selector array $attributes Return Value $this

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::dontSee()

$this dontSee(string $text) Assert that a given string is not seen on the current HTML. Parameters string $text 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::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::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::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::createApplication()

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

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