function MigrateSourceTestBase::getPluginClass
Determines the plugin to be tested by reading the class @covers annotation.
Return value
string
1 call to MigrateSourceTestBase::getPluginClass()
- MigrateSourceTestBase::getPlugin in core/
modules/ migrate/ tests/ src/ Kernel/ MigrateSourceTestBase.php - Instantiates the source plugin under test.
File
-
core/
modules/ migrate/ tests/ src/ Kernel/ MigrateSourceTestBase.php, line 80
Class
- MigrateSourceTestBase
- Base class for tests of Migrate source plugins.
Namespace
Drupal\Tests\migrate\KernelCode
protected function getPluginClass() {
$annotations = Test::parseTestMethodAnnotations(static::class, $this->getName());
if (isset($annotations['class']['covers'])) {
return $annotations['class']['covers'][0];
}
else {
$this->fail('No plugin class was specified');
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.