function FormStateDecoratorBaseTest::testPrepareCallback

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testPrepareCallback()
  2. 10 core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testPrepareCallback()
  3. 11.x core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php \Drupal\Tests\Core\Form\FormStateDecoratorBaseTest::testPrepareCallback()

@covers ::prepareCallback

@dataProvider providerPrepareCallback

Parameters

string|callable $unprepared_callback:

callable $prepared_callback:

File

core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php, line 1443

Class

FormStateDecoratorBaseTest
@coversDefaultClass \Drupal\Core\Form\FormStateDecoratorBase

Namespace

Drupal\Tests\Core\Form

Code

public function testPrepareCallback($unprepared_callback, callable $prepared_callback) {
    $this->decoratedFormState
        ->prepareCallback(Argument::is($unprepared_callback))
        ->willReturn($prepared_callback)
        ->shouldBeCalled();
    $this->assertSame($prepared_callback, $this->formStateDecoratorBase
        ->prepareCallback($unprepared_callback));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.