public function FormBuilderTest::testGetFormWithObject in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\FormBuilderTest::testGetFormWithObject()
- 9 core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php \Drupal\Tests\Core\Form\FormBuilderTest::testGetFormWithObject()
Tests the getForm() method with a form object.
File
- core/
tests/ Drupal/ Tests/ Core/ Form/ FormBuilderTest.php, line 227 - Contains \Drupal\Tests\Core\Form\FormBuilderTest.
Class
- FormBuilderTest
- @coversDefaultClass \Drupal\Core\Form\FormBuilder @group Form
Namespace
Drupal\Tests\Core\FormCode
public function testGetFormWithObject() {
$form_id = 'test_form_id';
$expected_form = $form_id();
$form_arg = $this
->getMockForm($form_id, $expected_form);
$form = $this->formBuilder
->getForm($form_arg);
$this
->assertFormElement($expected_form, $form, 'test');
$this
->assertArrayHasKey('#id', $form);
}