FieldInstanceOptionTranslationTest.php in Drupal 10
File
core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstanceOptionTranslationTest.php
View source
<?php
namespace Drupal\Tests\field\Kernel\Plugin\migrate\source\d6;
class FieldInstanceOptionTranslationTest extends FieldOptionTranslationTest {
protected static $modules = [
'field',
'migrate_drupal',
];
public function providerSource() {
$test = parent::providerSource();
$test[0]['expected_results'][0]['type'] = 'text';
$test[0]['expected_results'][1]['type'] = 'text';
$test[0]['expected_results'][2]['type'] = 'number_integer';
$test[0]['expected_results'][3]['type'] = 'number_integer';
return $test;
}
}