Changeset 52010 for trunk/tests/phpunit/tests/formatting/wpBasename.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/wpBasename.php
r51623 r52010 6 6 class Tests_Formatting_wpBasename extends WP_UnitTestCase { 7 7 8 function test_wp_basename_unix() {8 public function test_wp_basename_unix() { 9 9 $this->assertSame( 10 10 'file', … … 13 13 } 14 14 15 function test_wp_basename_unix_utf8_support() {15 public function test_wp_basename_unix_utf8_support() { 16 16 $this->assertSame( 17 17 'žluťoučký kůň.txt', … … 23 23 * @ticket 22138 24 24 */ 25 function test_wp_basename_windows() {25 public function test_wp_basename_windows() { 26 26 $this->assertSame( 27 27 'file.txt', … … 33 33 * @ticket 22138 34 34 */ 35 function test_wp_basename_windows_utf8_support() {35 public function test_wp_basename_windows_utf8_support() { 36 36 $this->assertSame( 37 37 'щипцы.txt',
Note: See TracChangeset
for help on using the changeset viewer.