executeMigration('taxonomy_settings'); } /** * Tests migration of taxonomy variables to taxonomy.settings.yml. */ public function testTaxonomySettings() { $config = $this->config('taxonomy.settings'); $this->assertIdentical(100, $config->get('terms_per_page_admin')); $this->assertIdentical(FALSE, $config->get('override_selector')); $this->assertConfigSchema(\Drupal::service('config.typed'), 'taxonomy.settings', $config->get()); } }