function UnicodeUnitTest::helperTestUcFirst

2 calls to UnicodeUnitTest::helperTestUcFirst()
UnicodeUnitTest::testEmulatedUnicode in drupal/core/modules/system/lib/Drupal/system/Tests/System/UnicodeUnitTest.php
Test emulated unicode features.
UnicodeUnitTest::testMbStringUnicode in drupal/core/modules/system/lib/Drupal/system/Tests/System/UnicodeUnitTest.php
Test full unicode features implemented using the mbstring extension.

File

drupal/core/modules/system/lib/Drupal/system/Tests/System/UnicodeUnitTest.php, line 105
Definition of Drupal\system\Tests\System\UnicodeUnitTest.

Class

UnicodeUnitTest
Test unicode handling features implemented in unicode.inc.

Namespace

Drupal\system\Tests\System

Code

function helperTestUcFirst() {
  $testcase = array(
    'tHe QUIcK bRoWn' => 'THe QUIcK bRoWn',
    'françAIS' => 'FrançAIS',
    'über' => 'Über',
    'åwesome' => 'Åwesome',
  );
  if ($this->extendedMode) {
    $testcase['σion'] = 'Σion';
  }
  foreach ($testcase as $input => $output) {
    $this
      ->assertEqual(drupal_ucfirst($input), $output, format_string('%input is ucfirst-ed as %output', array(
      '%input' => $input,
      '%output' => $output,
    )));
  }
}