function MigrateEventsTest::setUp
Overrides KernelTestBase::setUp
File
- 
              core/
modules/ migrate/ tests/ src/ Kernel/ MigrateEventsTest.php, line 38  
Class
- MigrateEventsTest
 - Tests events fired on migrations.
 
Namespace
Drupal\Tests\migrate\KernelCode
protected function setUp() {
  parent::setUp();
  $this->state = \Drupal::state();
  \Drupal::service('event_dispatcher')->addListener(MigrateEvents::MAP_SAVE, [
    $this,
    'mapSaveEventRecorder',
  ]);
  \Drupal::service('event_dispatcher')->addListener(MigrateEvents::MAP_DELETE, [
    $this,
    'mapDeleteEventRecorder',
  ]);
  \Drupal::service('event_dispatcher')->addListener(MigrateEvents::PRE_IMPORT, [
    $this,
    'preImportEventRecorder',
  ]);
  \Drupal::service('event_dispatcher')->addListener(MigrateEvents::POST_IMPORT, [
    $this,
    'postImportEventRecorder',
  ]);
  \Drupal::service('event_dispatcher')->addListener(MigrateEvents::PRE_ROW_SAVE, [
    $this,
    'preRowSaveEventRecorder',
  ]);
  \Drupal::service('event_dispatcher')->addListener(MigrateEvents::POST_ROW_SAVE, [
    $this,
    'postRowSaveEventRecorder',
  ]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.