function LogTest::testLog

Tests the Log plugin.

@dataProvider providerTestLog()

File

core/modules/migrate/tests/src/Unit/process/LogTest.php, line 20

Class

LogTest
Tests the Log process plugin.

Namespace

Drupal\Tests\migrate\Unit\process

Code

public function testLog($value, $expected_message) {
  // Test the expected log message.
  $this->migrateExecutable
    ->expects($this->once())
    ->method('saveMessage')
    ->with($expected_message);
  $plugin = new Log([], 'log', []);
  // Test the input value is not altered.
  $new_value = $plugin->transform($value, $this->migrateExecutable, new Row(), 'foo');
  $this->assertSame($value, $new_value);
}

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