function MakeUniqueEntityFieldTest::testMakeUniqueEntityFieldEntityInvalidStart
Tests that invalid start position throws an exception.
File
- 
              core/modules/ migrate/ tests/ src/ Unit/ process/ MakeUniqueEntityFieldTest.php, line 91 
Class
- MakeUniqueEntityFieldTest
- @coversDefaultClass \Drupal\migrate\Plugin\migrate\process\MakeUniqueEntityField[[api-linebreak]] @group migrate
Namespace
Drupal\Tests\migrate\Unit\processCode
public function testMakeUniqueEntityFieldEntityInvalidStart() : void {
  $configuration = [
    'entity_type' => 'test_entity_type',
    'field' => 'test_field',
    'start' => 'foobar',
  ];
  $plugin = new MakeUniqueEntityField($configuration, 'make_unique', [], $this->getMigration(), $this->entityTypeManager);
  $this->expectException('Drupal\\migrate\\MigrateException');
  $this->expectExceptionMessage('The start position configuration key should be an integer. Omit this key to capture from the beginning of the string.');
  $plugin->transform('test_start', $this->migrateExecutable, $this->row, 'foo');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
