TestComponent
class TestComponent (View source)
Properties
Component | $component | The original component. |
|
protected string | $rendered | The rendered component contents. |
Methods
Assert that the given string is contained within the rendered component.
Assert that the given strings are contained in order within the rendered component.
Assert that the given string is contained within the rendered component text.
Assert that the given strings are contained in order within the rendered component text.
Assert that the given string is not contained within the rendered component.
Assert that the given string is not contained within the rendered component text.
Get the string contents of the rendered component.
Dynamically access properties on the underlying component.
Dynamically call methods on the underlying component.
Details
$this
assertSee(string $value, bool $escape = true)
Assert that the given string is contained within the rendered component.
$this
assertSeeInOrder(array $values, bool $escape = true)
Assert that the given strings are contained in order within the rendered component.
$this
assertSeeText(string $value, bool $escape = true)
Assert that the given string is contained within the rendered component text.
$this
assertSeeTextInOrder(array $values, bool $escape = true)
Assert that the given strings are contained in order within the rendered component text.
$this
assertDontSee(string $value, bool $escape = true)
Assert that the given string is not contained within the rendered component.
$this
assertDontSeeText(string $value, bool $escape = true)
Assert that the given string is not contained within the rendered component text.
string
__toString()
Get the string contents of the rendered component.
mixed
__get(string $attribute)
Dynamically access properties on the underlying component.
mixed
__call(string $method, array $parameters)
Dynamically call methods on the underlying component.