You are here

public function TranslationTest::providerTestGet in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php \Drupal\Tests\Core\Annotation\TranslationTest::providerTestGet()
  2. 10 core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php \Drupal\Tests\Core\Annotation\TranslationTest::providerTestGet()

Provides data to self::testGet().

File

core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php, line 47

Class

TranslationTest
@coversDefaultClass \Drupal\Core\Annotation\Translation @group Annotation

Namespace

Drupal\Tests\Core\Annotation

Code

public function providerTestGet() {
  $data = [];
  $data[] = [
    [
      'value' => 'Foo',
    ],
    'Foo',
  ];
  $random = $this
    ->randomMachineName();
  $random_html_entity = '&' . $random;
  $data[] = [
    [
      'value' => 'Foo @bar @baz %qux',
      'arguments' => [
        '@bar' => $random,
        '@baz' => $random_html_entity,
        '%qux' => $random_html_entity,
      ],
      'context' => $this
        ->randomMachineName(),
    ],
    'Foo ' . $random . ' &amp;' . $random . ' <em class="placeholder">&amp;' . $random . '</em>',
  ];
  return $data;
}