MigrateTrackerSettingsTest.php
Same filename in other branches
Namespace
Drupal\Tests\tracker\Kernel\Migrate\d7File
-
core/
modules/ tracker/ tests/ src/ Kernel/ Migrate/ d7/ MigrateTrackerSettingsTest.php
View source
<?php
namespace Drupal\Tests\tracker\Kernel\Migrate\d7;
/**
* Tests migration of Tracker settings to configuration.
*
* @group tracker
* @group legacy
*/
class MigrateTrackerSettingsTest extends MigrateDrupalTestBase {
protected static $modules = [
'tracker',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->installConfig([
'tracker',
]);
$this->executeMigration('d7_tracker_settings');
}
/**
* Tests migration of tracker's variables to configuration.
*/
public function testMigration() {
$this->assertSame(999, \Drupal::config('tracker.settings')->get('cron_index_limit'));
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
MigrateTrackerSettingsTest | Tests migration of Tracker settings to configuration. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.