public function FormStateDecoratorBaseTest::testGetCompleteForm in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testGetCompleteForm()
@covers ::getCompleteForm
File
- core/
tests/ Drupal/ Tests/ Core/ Form/ FormStateDecoratorBaseTest.php, line 926
Class
- FormStateDecoratorBaseTest
- @coversDefaultClass \Drupal\Core\Form\FormStateDecoratorBase
Namespace
Drupal\Tests\Core\FormCode
public function testGetCompleteForm() {
$complete_form = [
'FOO' => 'BAR',
];
// Use PHPUnit for mocking, because Prophecy cannot mock methods that return
// by reference. See \Prophecy\Doubler\Generator\Node::getCode().
$decorated_form_state = $this
->createMock(FormStateInterface::class);
$decorated_form_state
->expects($this
->once())
->method('getCompleteForm')
->willReturn($complete_form);
$this->formStateDecoratorBase = new NonAbstractFormStateDecoratorBase($decorated_form_state);
$this
->assertSame($this->formStateDecoratorBase, $this->formStateDecoratorBase
->setCompleteForm($complete_form));
$this
->assertSame($complete_form, $this->formStateDecoratorBase
->getCompleteForm());
}