public function DevelDumperTestTrait::assertContainsDump in Devel 8.2
Same name and namespace in other branches
- 8.3 tests/src/Kernel/DevelDumperTestTrait.php \Drupal\Tests\devel\Kernel\DevelDumperTestTrait::assertContainsDump()
- 8 tests/src/Kernel/DevelDumperTestTrait.php \Drupal\Tests\devel\Kernel\DevelDumperTestTrait::assertContainsDump()
- 4.x tests/src/Kernel/DevelDumperTestTrait.php \Drupal\Tests\devel\Kernel\DevelDumperTestTrait::assertContainsDump()
Asserts that a haystack contains the dump output.
Use \Drupal\devel\DevelDumperManager::dump().
Parameters
string $haystack: The string that contains the dump output to test.
mixed $data: The variable to dump.
string $name: (optional) The label to output before variable, defaults to NULL.
string $message: (optional) A message to display with the assertion.
1 call to DevelDumperTestTrait::assertContainsDump()
- DevelTwigExtensionTest::testDumpFunctions in tests/
src/ Kernel/ DevelTwigExtensionTest.php - Tests that the Twig extension's dump functions produce the expected output.
File
- tests/
src/ Kernel/ DevelDumperTestTrait.php, line 87
Class
- DevelDumperTestTrait
- Provides a class for checking dumper output.
Namespace
Drupal\Tests\devel\KernelCode
public function assertContainsDump($haystack, $data, $name = NULL, $message = '') {
$output = $this
->getDumperDump($data, $name);
$this
->assertContains($output, (string) $haystack, $message);
}