LanguageContentTaxonomyVocabularySettingsTest.php

Same filename in this branch
  1. 11.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentTaxonomyVocabularySettingsTest.php
Same filename in other branches
  1. 9 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentTaxonomyVocabularySettingsTest.php
  2. 9 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentTaxonomyVocabularySettingsTest.php
  3. 8.9.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentTaxonomyVocabularySettingsTest.php
  4. 8.9.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentTaxonomyVocabularySettingsTest.php
  5. 10 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentTaxonomyVocabularySettingsTest.php
  6. 10 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentTaxonomyVocabularySettingsTest.php

Namespace

Drupal\Tests\language\Kernel\Plugin\migrate\source\d7

File

core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentTaxonomyVocabularySettingsTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\language\Kernel\Plugin\migrate\source\d7;

use Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d7\VocabularyTest;

/**
 * Tests i18ntaxonomy vocabulary setting source plugin.
 *
 * @covers \Drupal\language\Plugin\migrate\source\d7\LanguageContentSettingsTaxonomyVocabulary
 *
 * @group language
 */
class LanguageContentTaxonomyVocabularySettingsTest extends VocabularyTest {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'taxonomy',
        'language',
        'migrate_drupal',
    ];
    
    /**
     * {@inheritdoc}
     */
    public static function providerSource() {
        // Get the source data from parent.
        $tests = parent::providerSource();
        foreach ($tests as &$test) {
            // Add the extra columns provided by i18n_taxonomy.
            foreach ($test['source_data']['taxonomy_vocabulary'] as &$vocabulary) {
                $vocabulary['language'] = 'und';
                $vocabulary['i18n_mode'] = 2;
            }
            foreach ($test['expected_data'] as &$expected) {
                $expected['language'] = 'und';
                $expected['i18n_mode'] = 2;
            }
        }
        return $tests;
    }

}

Classes

Title Deprecated Summary
LanguageContentTaxonomyVocabularySettingsTest Tests i18ntaxonomy vocabulary setting source plugin.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.