public function DrupalSqlBaseTest::testSourceDatabaseError in Drupal 9
Same name and namespace in other branches
- 8 core/modules/migrate_drupal/tests/src/Unit/source/DrupalSqlBaseTest.php \Drupal\Tests\migrate_drupal\Unit\source\DrupalSqlBaseTest::testSourceDatabaseError()
@covers ::checkRequirements
File
- core/
modules/ migrate_drupal/ tests/ src/ Unit/ source/ DrupalSqlBaseTest.php, line 97
Class
- DrupalSqlBaseTest
- @coversDefaultClass \Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase @group migrate_drupal
Namespace
Drupal\Tests\migrate_drupal\Unit\sourceCode
public function testSourceDatabaseError() {
$plugin = new TestDrupalSqlBase([], 'test', $this->pluginDefinition, $this
->getMigration(), $this->state, $this->entityTypeManager);
$this
->expectException(RequirementsException::class);
$this
->expectExceptionMessage('No database connection configured for source plugin test');
$plugin
->checkRequirements();
}