You are here

UrlAliasTestBase.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/path/tests/src/Unit/Migrate/UrlAliasTestBase.php

File

core/modules/path/tests/src/Unit/Migrate/UrlAliasTestBase.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Tests\path\Unit\Migrate\UrlAliasTestBase.
 */
namespace Drupal\Tests\path\Unit\Migrate;

use Drupal\Tests\migrate\Unit\MigrateSqlSourceTestCase;

/**
 * Base class for url_alias source tests.
 */
abstract class UrlAliasTestBase extends MigrateSqlSourceTestCase {

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    $this->databaseContents['url_alias'] = $this->expectedResults;
    parent::setUp();
  }

}

Classes

Namesort descending Description
UrlAliasTestBase Base class for url_alias source tests.