Changeset 52010 for trunk/tests/phpunit/tests/pomo/translations.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/pomo/translations.php
r48937 r52010 6 6 class Tests_POMO_Translations extends WP_UnitTestCase { 7 7 8 function test_add_entry() {8 public function test_add_entry() { 9 9 $entry = new Translation_Entry( array( 'singular' => 'baba' ) ); 10 10 $entry2 = new Translation_Entry( array( 'singular' => 'dyado' ) ); … … 43 43 } 44 44 45 function test_translate() {45 public function test_translate() { 46 46 $entry1 = new Translation_Entry( 47 47 array( … … 66 66 } 67 67 68 function test_translate_plural() {68 public function test_translate_plural() { 69 69 $entry_incomplete = new Translation_Entry( 70 70 array( … … 106 106 } 107 107 108 function test_digit_and_merge() {108 public function test_digit_and_merge() { 109 109 $entry_digit_1 = new Translation_Entry( 110 110 array(
Note: See TracChangeset
for help on using the changeset viewer.