protected function EntityReferenceAdminTest::assertFieldSelectOptions in Drupal 9
Same name in this branch
- 9 core/modules/field/tests/src/Functional/EntityReference/EntityReferenceAdminTest.php \Drupal\Tests\field\Functional\EntityReference\EntityReferenceAdminTest::assertFieldSelectOptions()
- 9 core/modules/field/tests/src/FunctionalJavascript/EntityReference/EntityReferenceAdminTest.php \Drupal\Tests\field\FunctionalJavascript\EntityReference\EntityReferenceAdminTest::assertFieldSelectOptions()
Same name and namespace in other branches
- 8 core/modules/field/tests/src/Functional/EntityReference/EntityReferenceAdminTest.php \Drupal\Tests\field\Functional\EntityReference\EntityReferenceAdminTest::assertFieldSelectOptions()
Checks if a select element contains the specified options.
Parameters
string $name: The field name.
array $expected_options: An array of expected options.
1 call to EntityReferenceAdminTest::assertFieldSelectOptions()
- EntityReferenceAdminTest::testAvailableFormatters in core/
modules/ field/ tests/ src/ Functional/ EntityReference/ EntityReferenceAdminTest.php - Tests the formatters for the Entity References.
File
- core/
modules/ field/ tests/ src/ Functional/ EntityReference/ EntityReferenceAdminTest.php, line 402
Class
- EntityReferenceAdminTest
- Tests for the administrative UI.
Namespace
Drupal\Tests\field\Functional\EntityReferenceCode
protected function assertFieldSelectOptions($name, array $expected_options) {
$options = $this
->assertSession()
->selectExists($name)
->findAll('xpath', 'option');
array_walk($options, function (NodeElement &$option) {
$option = $option
->getValue();
});
$this
->assertEqualsCanonicalizing($expected_options, $options);
}