TestCase::expectsEvents()

$this expectsEvents(array|string $events) Specify a list of events that should 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 Exceptions Exception

TestCase::dump()

void dump() Dump the content from the last response. Return Value void

TestCase::dontSeeText()

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

TestCase::dontSeeLink()

$this dontSeeLink(string $text, string|null $url = null) Assert that a given link is not seen on the page. Parameters string $text string|null $url Return Value $this

TestCase::dontSeeJson()

$this dontSeeJson(array $data = null) Assert that the response doesn't contain JSON. Parameters array $data Return Value $this

TestCase::dontSeeIsSelected()

$this dontSeeIsSelected(string $selector, string $value) Assert that the given value is not selected. Parameters string $selector string $value Return Value $this

TestCase::dontSeeIsChecked()

$this dontSeeIsChecked(string $selector) Assert that the given checkbox is not selected. Parameters string $selector Return Value $this

TestCase::dontSeeIsAuthenticated()

$this dontSeeIsAuthenticated(string|null $guard = null) Assert that the user is not authenticated. Parameters 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::dontSeeInElement()

$this dontSeeInElement(string $element, string $text) Assert that a given string is not seen inside an element. Parameters string $element string $text Return Value $this