function SubformStateTest::testFormObject
Same name in other branches
- 10 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::testFormObject()
@covers ::getFormObject
File
-
core/
tests/ Drupal/ Tests/ Core/ Form/ SubformStateTest.php, line 320
Class
- SubformStateTest
- @coversDefaultClass \Drupal\Core\Form\SubformState
Namespace
Drupal\Tests\Core\FormCode
public function testFormObject() : void {
$parent_form_state = $this->prophesize(FormStateInterface::class);
$parent_form_object = $this->prophesize(FormInterface::class)
->reveal();
$parent_form_state->getFormObject()
->willReturn($parent_form_object)
->shouldBeCalledOnce();
$subform_form_object = $this->prophesize(FormInterface::class)
->reveal();
$subform_state = SubformState::createForSubform($this->parentForm['dog'], $this->parentForm, $parent_form_state->reveal(), $subform_form_object);
$this->assertSame($subform_form_object, $subform_state->getFormObject());
$this->assertSame($parent_form_object, $subform_state->getCompleteFormState()
->getFormObject());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.