function AssertLegacyTraitTest::testAssertOptionSelectedFail
@covers ::assertOptionSelected
File
-
core/
tests/ Drupal/ Tests/ Core/ Assert/ AssertLegacyTraitTest.php, line 145
Class
- AssertLegacyTraitTest
- @coversDefaultClass \Drupal\FunctionalTests\AssertLegacyTrait[[api-linebreak]] @group Assert @group legacy
Namespace
Drupal\Tests\Core\AssertCode
public function testAssertOptionSelectedFail() {
$option_field = $this->prophesize(NodeElement::class);
$option_field->hasAttribute('selected')
->willReturn(FALSE);
$this->webAssert
->optionExists('myselect', 'two')
->willReturn($option_field->reveal());
$this->expectException(ExpectationFailedException::class);
$this->assertOptionSelected('myselect', 'two');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.