You are here

protected function LingotekNodeBulkFormWithGroupModuleTest::configureGroups in Lingotek Translation 4.0.x

Same name and namespace in other branches
  1. 3.0.x tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormWithGroupModuleTest::configureGroups()
  2. 3.1.x tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormWithGroupModuleTest::configureGroups()
  3. 3.2.x tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormWithGroupModuleTest::configureGroups()
  4. 3.3.x tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormWithGroupModuleTest::configureGroups()
  5. 3.4.x tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormWithGroupModuleTest::configureGroups()
  6. 3.5.x tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormWithGroupModuleTest::configureGroups()
  7. 3.6.x tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormWithGroupModuleTest::configureGroups()
  8. 3.7.x tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormWithGroupModuleTest::configureGroups()
  9. 3.8.x tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormWithGroupModuleTest::configureGroups()

Add some test groups.

1 call to LingotekNodeBulkFormWithGroupModuleTest::configureGroups()
LingotekNodeBulkFormWithGroupModuleTest::setUp in tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php

File

tests/src/Functional/Form/LingotekNodeBulkFormWithGroupModuleTest.php, line 273

Class

LingotekNodeBulkFormWithGroupModuleTest
Tests the bulk management form when the group module is enabled.

Namespace

Drupal\Tests\lingotek\Functional\Form

Code

protected function configureGroups() {
  $this->groups[1] = $this
    ->addGroup('Release', 'My Product 1.0');
  $this->groups[2] = $this
    ->addGroup('Release', 'My Product 2.0');
  $this->groups[3] = $this
    ->addGroup('Release', 'My Product 2.4');
}