public function FormatDateTest::testMigrateExceptionMissingFromFormat in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/tests/src/Unit/process/FormatDateTest.php \Drupal\Tests\migrate\Unit\process\FormatDateTest::testMigrateExceptionMissingFromFormat()
- 9 core/modules/migrate/tests/src/Unit/process/FormatDateTest.php \Drupal\Tests\migrate\Unit\process\FormatDateTest::testMigrateExceptionMissingFromFormat()
Tests that missing configuration will throw an exception.
File
- core/
modules/ migrate/ tests/ src/ Unit/ process/ FormatDateTest.php, line 20
Class
- FormatDateTest
- Tests the format date process plugin.
Namespace
Drupal\Tests\migrate\Unit\processCode
public function testMigrateExceptionMissingFromFormat() {
$configuration = [
'from_format' => '',
'to_format' => 'Y-m-d',
];
$this
->expectException(MigrateException::class);
$this
->expectExceptionMessage('Format date plugin is missing from_format configuration.');
$this->plugin = new FormatDate($configuration, 'test_format_date', []);
$this->plugin
->transform('01/05/1955', $this->migrateExecutable, $this->row, 'field_date');
}