public function WebAssertArgumentsTest::testElementContains in Drupal 10
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Assert/WebAssertArgumentsTest.php \Drupal\Tests\Core\Assert\WebAssertArgumentsTest::testElementContains()
@covers ::elementContains
File
- core/
tests/ Drupal/ Tests/ Core/ Assert/ WebAssertArgumentsTest.php, line 444
Class
- WebAssertArgumentsTest
- Tests that calling WebAssert methods with extra arguments leads to errors.
Namespace
Drupal\Tests\Core\AssertCode
public function testElementContains() : void {
$this
->expectError(\AssertionError::class);
$element = $this
->prophesize(NodeElement::class);
$element
->getHtml()
->willReturn('bar');
$this->page
->find(Argument::any(), Argument::any())
->willReturn($element
->reveal());
$this->webAssert
->elementContains('xpath', '//foo', 'bar', 'Extra argument');
}