function FormBuilderTest::testGetFormWithClassString
Tests the getForm() method with a class name based form ID.
File
- 
              core/tests/ Drupal/ Tests/ Core/ Form/ FormBuilderTest.php, line 253 
Class
- FormBuilderTest
- @coversDefaultClass \Drupal\Core\Form\FormBuilder[[api-linebreak]] @group Form
Namespace
Drupal\Tests\Core\FormCode
public function testGetFormWithClassString() : void {
  $form_id = '\\Drupal\\Tests\\Core\\Form\\TestForm';
  $object = new TestForm();
  $form = [];
  $form_state = new FormState();
  $expected_form = $object->buildForm($form, $form_state);
  $form = $this->formBuilder
    ->getForm($form_id);
  $this->assertFormElement($expected_form, $form, 'test');
  $this->assertSame('test-form', $form['#id']);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
