You are here

public function UnicodeTest::providerTestMimeHeader in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php \Drupal\Tests\Component\Utility\UnicodeTest::providerTestMimeHeader()

Data provider for testMimeHeader().

Return value

array An array containing a string and its encoded value.

See also

testMimeHeader()

File

core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php, line 43

Class

UnicodeTest
Test unicode handling features implemented in Unicode component.

Namespace

Drupal\Tests\Component\Utility

Code

public function providerTestMimeHeader() {
  return [
    "Base64 encoding" => [
      'tést.txt',
      '=?UTF-8?B?dMOpc3QudHh0?=',
    ],
    "ASCII characters only" => [
      'test.txt',
      'test.txt',
    ],
  ];
}