You are here

protected function LingotekProfileFormTest::setupResources in Lingotek Translation 3.6.x

Same name and namespace in other branches
  1. 4.0.x tests/src/Functional/Form/LingotekProfileFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekProfileFormTest::setupResources()
  2. 3.3.x tests/src/Functional/Form/LingotekProfileFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekProfileFormTest::setupResources()
  3. 3.4.x tests/src/Functional/Form/LingotekProfileFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekProfileFormTest::setupResources()
  4. 3.5.x tests/src/Functional/Form/LingotekProfileFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekProfileFormTest::setupResources()
  5. 3.7.x tests/src/Functional/Form/LingotekProfileFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekProfileFormTest::setupResources()
  6. 3.8.x tests/src/Functional/Form/LingotekProfileFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekProfileFormTest::setupResources()

Setup test resources for the test.

1 call to LingotekProfileFormTest::setupResources()
LingotekProfileFormTest::setUp in tests/src/Functional/Form/LingotekProfileFormTest.php

File

tests/src/Functional/Form/LingotekProfileFormTest.php, line 783

Class

LingotekProfileFormTest
Tests the Lingotek profile form.

Namespace

Drupal\Tests\lingotek\Functional\Form

Code

protected function setupResources() {
  $config = \Drupal::configFactory()
    ->getEditable('lingotek.settings');
  $config
    ->set('account.resources.community', [
    'test_community' => 'Test community',
    'test_community2' => 'Test community 2',
  ]);
  $config
    ->set('account.resources.project', [
    'test_project' => 'Test project',
    'test_project2' => 'Test project 2',
  ]);
  $config
    ->set('account.resources.vault', [
    'test_vault' => 'Test vault',
    'test_vault2' => 'Test vault 2',
  ]);
  $config
    ->set('account.resources.workflow', [
    'test_workflow' => 'Test workflow',
    'test_workflow2' => 'Test workflow 2',
  ]);
  $config
    ->set('account.resources.filter', [
    'test_filter' => 'Test filter',
    'test_filter2' => 'Test filter 2',
    'test_filter3' => 'Test filter 3',
  ]);
  $config
    ->save();
}