You are here

public function MigrateSqlIdMapTest::testSetMessage in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/MigrateSqlIdMapTest.php \Drupal\Tests\migrate\Unit\MigrateSqlIdMapTest::testSetMessage()

Tests the SQL ID map set message method.

File

core/modules/migrate/tests/src/Unit/MigrateSqlIdMapTest.php, line 193

Class

MigrateSqlIdMapTest
Tests the SQL ID map plugin.

Namespace

Drupal\Tests\migrate\Unit

Code

public function testSetMessage() {
  $message = $this
    ->createMock('Drupal\\migrate\\MigrateMessageInterface');
  $id_map = $this
    ->getIdMap();
  $id_map
    ->setMessage($message);
  $this
    ->assertAttributeEquals($message, 'message', $id_map);
}