function VariableTranslationCheckRequirementsTest::testCheckRequirements
Same name in other branches
- 9 core/modules/migrate_drupal/tests/src/Kernel/d6/VariableTranslationCheckRequirementsTest.php \Drupal\Tests\migrate_drupal\Kernel\d6\VariableTranslationCheckRequirementsTest::testCheckRequirements()
- 8.9.x core/modules/migrate_drupal/tests/src/Kernel/d6/VariableTranslationCheckRequirementsTest.php \Drupal\Tests\migrate_drupal\Kernel\d6\VariableTranslationCheckRequirementsTest::testCheckRequirements()
- 11.x core/modules/migrate_drupal/tests/src/Kernel/d6/VariableTranslationCheckRequirementsTest.php \Drupal\Tests\migrate_drupal\Kernel\d6\VariableTranslationCheckRequirementsTest::testCheckRequirements()
Tests exception in thrown when the i18n_variable table does not exist.
File
-
core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d6/ VariableTranslationCheckRequirementsTest.php, line 32
Class
- VariableTranslationCheckRequirementsTest
- Tests check requirements for variable translation source plugin.
Namespace
Drupal\Tests\migrate_drupal\Kernel\d6Code
public function testCheckRequirements() : void {
$this->expectException(RequirementsException::class);
$this->expectExceptionMessage("Source database table 'i18n_variable' does not exist");
$this->getMigration('d6_system_maintenance_translation')
->getSourcePlugin()
->checkRequirements();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.