function TextCckTest::setUp

Same name in this branch
  1. 8.9.x core/modules/text/tests/src/Unit/Migrate/TextCckTest.php \Drupal\Tests\text\Unit\Migrate\TextCckTest::setUp()

Overrides UnitTestCase::setUp

File

core/modules/text/tests/src/Unit/Plugin/migrate/cckfield/TextCckTest.php, line 31

Class

TextCckTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21text%21src%21Plugin%21migrate%21cckfield%21TextField.php/class/TextField/8.9.x" title="Plugin annotation @MigrateCckField( id = &quot;text&quot;, type_map = { &quot;text&quot; = &quot;text&quot;, &quot;text_long&quot; = &quot;text_long&quot;, &quot;text_with_summary&quot; = &quot;text_with_summary&quot; }, core = {6,7}, source_module = &quot;text&quot;, destination_module = &quot;text&quot;, )" class="local">\Drupal\text\Plugin\migrate\cckfield\TextField</a> @group text @group legacy

Namespace

Drupal\Tests\text\Unit\Plugin\migrate\cckfield

Code

protected function setUp() {
    $this->plugin = new TextField([], 'text', []);
    $migration = $this->prophesize(MigrationInterface::class);
    // The plugin's processCckFieldValues() method will call
    // setProcessOfProperty() and return nothing. So, in order to examine the
    // process pipeline created by the plugin, we need to ensure that
    // getProcess() always returns the last input to setProcessOfProperty().
    $migration->setProcessOfProperty(Argument::type('string'), Argument::type('array'))
        ->will(function ($arguments) use ($migration) {
        $migration->getProcess()
            ->willReturn($arguments[1]);
    });
    $this->migration = $migration->reveal();
}

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