function SubformStateTest::testFormObject

Same name and namespace in other branches
  1. 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 <a href="/api/drupal/core%21lib%21Drupal%21Core%21Form%21SubformState.php/class/SubformState/11.x" title="Stores information about the state of a subform." class="local">\Drupal\Core\Form\SubformState</a>

Namespace

Drupal\Tests\Core\Form

Code

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.