public function AssertLegacyTraitTest::testAssertOptionSelected in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Assert/AssertLegacyTraitTest.php \Drupal\Tests\Core\Assert\AssertLegacyTraitTest::testAssertOptionSelected()
@covers ::assertOptionSelected
File
- core/
tests/ Drupal/ Tests/ Core/ Assert/ AssertLegacyTraitTest.php, line 131
Class
- AssertLegacyTraitTest
- @coversDefaultClass \Drupal\FunctionalTests\AssertLegacyTrait @group Assert @group legacy
Namespace
Drupal\Tests\Core\AssertCode
public function testAssertOptionSelected() {
$option_field = $this
->prophesize(NodeElement::class);
$option_field
->hasAttribute('selected')
->willReturn(TRUE);
$this->webAssert
->optionExists('myselect', 'two')
->willReturn($option_field
->reveal());
$this
->assertOptionSelected('myselect', 'two');
}