view core/modules/datetime/tests/src/Unit/Plugin/migrate/field/d6/DateFieldLegacyTest.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents 129ea1e6d783
children
line wrap: on
line source
<?php

namespace Drupal\Tests\datetime\Unit\Plugin\migrate\field\d6;

/**
 * @group migrate
 * @group legacy
 */
class DateFieldLegacyTest extends DateFieldTest {

  /**
   * @expectedDeprecation Deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use defineValueProcessPipeline() instead. See https://www.drupal.org/node/2944598.
   */
  public function testUnknownDateType($method = 'processFieldValues') {
    parent::testUnknownDateType($method);
  }

}