function FormattableMarkupTest::providerTestUnexpectedPlaceholder

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Component/Render/FormattableMarkupTest.php \Drupal\Tests\Component\Render\FormattableMarkupTest::providerTestUnexpectedPlaceholder()
  2. 10 core/tests/Drupal/Tests/Component/Render/FormattableMarkupTest.php \Drupal\Tests\Component\Render\FormattableMarkupTest::providerTestUnexpectedPlaceholder()
  3. 9 core/tests/Drupal/Tests/Component/Render/FormattableMarkupTest.php \Drupal\Tests\Component\Render\FormattableMarkupTest::providerTestUnexpectedPlaceholder()

Data provider for
@dataProvider providerTestUnexpectedPlaceholder" class="local">FormattableMarkupTest::testUnexpectedPlaceholder
().

Return value

array

File

core/tests/Drupal/Tests/Component/Render/FormattableMarkupTest.php, line 92

Class

FormattableMarkupTest
Tests the TranslatableMarkup class.

Namespace

Drupal\Tests\Component\Render

Code

public function providerTestUnexpectedPlaceholder() {
  return [
    [
      'Non alpha starting character: ~placeholder',
      [
        '~placeholder' => 'replaced',
      ],
      E_USER_ERROR,
      'Invalid placeholder (~placeholder) in string: Non alpha starting character: ~placeholder',
    ],
    [
      'Alpha starting character: placeholder',
      [
        'placeholder' => 'replaced',
      ],
      E_USER_DEPRECATED,
      'Invalid placeholder (placeholder) in string: Alpha starting character: placeholder',
    ],
    // Ensure that where the placeholder is located in the string is
    // irrelevant.
[
      'placeholder',
      [
        'placeholder' => 'replaced',
      ],
      E_USER_DEPRECATED,
      'Invalid placeholder (placeholder) in string: placeholder',
    ],
  ];
}

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