migration = $this->prophesize('Drupal\migrate\Plugin\MigrationInterface')->reveal(); $this->plugin = new DateField([], '', []); $this->setExpectedException(MigrateException::class, "Field field_date of type 'timestamp' is an unknown date field type."); $this->plugin->processFieldValues($this->migration, 'field_date', ['type' => 'timestamp']); } }