You appear to be a bot. Output may be restricted
Description
Usage
Tests_Functions_NumberFormatI18n::test_should_fall_back_to_number_format_when_wp_locale_is_not_set();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/functions/numberFormatI18n.php
Lines:
1 to 13 of 13
public function test_should_fall_back_to_number_format_when_wp_locale_is_not_set() { $locale = clone $GLOBALS['wp_locale']; $GLOBALS['wp_locale'] = null; $actual_1 = number_format_i18n( 123456.789, 0 ); $actual_2 = number_format_i18n( 123456.789, 4 ); $GLOBALS['wp_locale'] = $locale; $this->assertSame( '123,457', $actual_1 ); $this->assertSame( '123,456.7890', $actual_2 ); }