You are here

public function BlockVisibilityTest::testTransformNoData in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/block/tests/src/Unit/Plugin/migrate/process/BlockVisibilityTest.php \Drupal\Tests\block\Unit\Plugin\migrate\process\BlockVisibilityTest::testTransformNoData()

@covers ::transform

File

core/modules/block/tests/src/Unit/Plugin/migrate/process/BlockVisibilityTest.php, line 39

Class

BlockVisibilityTest
Tests the block_visibility process plugin.

Namespace

Drupal\Tests\block\Unit\Plugin\migrate\process

Code

public function testTransformNoData() {
  $transformed_value = $this->plugin
    ->transform([
    0,
    '',
    [],
  ], $this->migrateExecutable, $this->row, 'destination_property');
  $this
    ->assertEmpty($transformed_value);
}