Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / text / tests / src / Unit / Plugin / migrate / field / d6 / TextFieldLegacyTest.php
1 <?php
2
3 namespace Drupal\Tests\text\Unit\Plugin\migrate\field\d6;
4
5 /**
6  * @coversDefaultClass \Drupal\text\Plugin\migrate\field\d6\TextField
7  * @group text
8  * @group legacy
9  */
10 class TextFieldLegacyTest extends TextFieldTest {
11
12   /**
13    * @covers ::processFieldValues
14    * @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.
15    */
16   public function testProcessFilteredTextFieldValues($method = 'processFieldValues') {
17     parent::testProcessFilteredTextFieldValues($method);
18   }
19
20   /**
21    * @covers ::processFieldValues
22    * @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.
23    */
24   public function testProcessBooleanTextImplicitValues($method = 'processFieldValues') {
25     parent::testProcessBooleanTextImplicitValues($method);
26   }
27
28   /**
29    * @covers ::processFieldValues
30    * @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.
31    */
32   public function testProcessBooleanTextExplicitValues($method = 'processFieldValues') {
33     parent::testProcessBooleanTextExplicitValues($method);
34   }
35
36 }