MigrateDblogConfigsTest.php

Namespace

Drupal\Tests\dblog\Kernel\Migrate\d7

File

core/modules/dblog/tests/src/Kernel/Migrate/d7/MigrateDblogConfigsTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\dblog\Kernel\Migrate\d7;

use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;

/**
 * Upgrade variables to dblog.settings.yml.
 */
class MigrateDblogConfigsTest extends MigrateDrupal7TestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'dblog',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->installConfig(static::$modules);
    $this->executeMigration('d7_dblog_settings');
  }
  
  /**
   * Tests migration of dblog variables to dblog.settings.yml.
   */
  public function testDblogSettings() : void {
    $config = $this->config('dblog.settings');
    $this->assertSame(10000, $config->get('row_limit'));
  }

}

Classes

Title Deprecated Summary
MigrateDblogConfigsTest Upgrade variables to dblog.settings.yml.

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