You appear to be a bot. Output may be restricted
Description
Usage
Tests_Functions_NumberFormatI18n::test_should_default_to_en_us_format();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/functions/numberFormatI18n.php
Lines:
1 to 5 of 5
public function test_should_default_to_en_us_format() { $this->assertSame( '123,457', number_format_i18n( 123456.789, 0 ) ); $this->assertSame( '123,456.7890', number_format_i18n( 123456.789, 4 ) ); }