Changeset 61855 for trunk/tests/phpunit/tests/formatting/removeAccents.php
- Timestamp:
- 03/06/2026 06:01:47 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/removeAccents.php
r53754 r61855 110 110 111 111 /** 112 * @ticket 64821 113 */ 114 public function test_remove_accents_germanic_capital_eszett() { 115 // U+1E9E LATIN CAPITAL LETTER SHARP S, standardized in German orthography in 2017 (DIN 5008). 116 $this->assertSame( 'SS', remove_accents( 'ẞ', 'de_DE' ) ); 117 // Verify it works in context alongside the lowercase variant. 118 $this->assertSame( 'SSstrasse', remove_accents( 'ẞstraße', 'de_DE' ) ); 119 } 120 121 /** 112 122 * @ticket 23907 113 123 */
Note: See TracChangeset
for help on using the changeset viewer.