public function MigrationTest::getProcessPluginsExceptionMessageProvider in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/tests/src/Kernel/Plugin/MigrationTest.php \Drupal\Tests\migrate\Kernel\Plugin\MigrationTest::getProcessPluginsExceptionMessageProvider()
Provides data for testing invalid process pipeline.
File
- core/
modules/ migrate/ tests/ src/ Kernel/ Plugin/ MigrationTest.php, line 74
Class
- MigrationTest
- Tests the migration plugin.
Namespace
Drupal\Tests\migrate\Kernel\PluginCode
public function getProcessPluginsExceptionMessageProvider() {
return [
[
'Null' => [
'dest' => NULL,
],
],
[
'boolean' => [
'dest' => TRUE,
],
],
[
'integer' => [
'dest' => 2370,
],
],
[
'float' => [
'dest' => 1.61,
],
],
];
}