function MachineNameControllerTest::setUp

Same name in other branches
  1. 8.9.x core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php \Drupal\Tests\system\Unit\Transliteration\MachineNameControllerTest::setUp()
  2. 10 core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php \Drupal\Tests\system\Unit\Transliteration\MachineNameControllerTest::setUp()

Overrides UnitTestCase::setUp

File

core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php, line 39

Class

MachineNameControllerTest
Tests that the machine name controller can transliterate strings as expected.

Namespace

Drupal\Tests\system\Unit\Transliteration

Code

protected function setUp() : void {
    parent::setUp();
    // Create the machine name controller.
    $this->tokenGenerator = $this->prophesize(CsrfTokenGenerator::class);
    $this->tokenGenerator
        ->validate(Argument::cetera())
        ->will(function ($args) {
        return $args[0] === 'token-' . $args[1];
    });
    $this->machineNameController = new MachineNameController(new PhpTransliteration(), $this->tokenGenerator
        ->reveal());
}

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