abstract class MigrationLookupTestCase in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/tests/src/Unit/process/MigrationLookupTestCase.php \Drupal\Tests\migrate\Unit\process\MigrationLookupTestCase
- 9 core/modules/migrate/tests/src/Unit/process/MigrationLookupTestCase.php \Drupal\Tests\migrate\Unit\process\MigrationLookupTestCase
Provides container handling for migration lookup unit tests.
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitWarnings
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
- class \Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase
- class \Drupal\Tests\migrate\Unit\process\MigrationLookupTestCase
- class \Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
Expanded class hierarchy of MigrationLookupTestCase
File
- core/
modules/ migrate/ tests/ src/ Unit/ process/ MigrationLookupTestCase.php, line 12
Namespace
Drupal\Tests\migrate\Unit\processView source
abstract class MigrationLookupTestCase extends MigrateProcessTestCase {
/**
* The prophecy of the migrate stub service.
*
* @var \Prophecy\Prophecy\ObjectProphecy
*/
protected $migrateStub;
/**
* The prophecy of the migrate lookup service.
*
* @var \Prophecy\Prophecy\ObjectProphecy
*/
protected $migrateLookup;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->migrateStub = $this
->prophesize(MigrateStub::class);
$this->migrateLookup = $this
->prophesize(MigrateLookupInterface::class);
}
/**
* Prepares and sets the container.
*
* @return \Symfony\Component\DependencyInjection\ContainerInterface
* The prepared container.
*/
protected function prepareContainer() {
$container = new ContainerBuilder();
$container
->set('migrate.stub', $this->migrateStub
->reveal());
$container
->set('migrate.lookup', $this->migrateLookup
->reveal());
\Drupal::setContainer($container);
return $container;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateProcessTestCase:: |
protected | property | ||
MigrateProcessTestCase:: |
protected | property | ||
MigrateProcessTestCase:: |
protected | property | ||
MigrateTestCase:: |
protected | property | The migration ID map. | |
MigrateTestCase:: |
protected | property | An array of migration configuration values. | 5 |
MigrateTestCase:: |
protected | property | Local store for mocking setStatus()/getStatus(). | |
MigrateTestCase:: |
protected | function | Generates a table schema from a row. | |
MigrateTestCase:: |
protected | function | Gets an SQLite database connection object for use in tests. | |
MigrateTestCase:: |
protected | function | Retrieves a mocked migration. | |
MigrateTestCase:: |
protected | function | Gets the value on a row for a given key. | |
MigrateTestCase:: |
public | function | Tests a query. | |
MigrateTestCase:: |
protected | function | Asserts tested values during test retrieval. | |
MigrationLookupTestCase:: |
protected | property | The prophecy of the migrate lookup service. | |
MigrationLookupTestCase:: |
protected | property | The prophecy of the migrate stub service. | |
MigrationLookupTestCase:: |
protected | function | Prepares and sets the container. | |
MigrationLookupTestCase:: |
protected | function |
Overrides MigrateProcessTestCase:: |
|
PhpUnitWarnings:: |
private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
PhpUnitWarnings:: |
public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
public static | function |