endtoend-test-psl/tests/Psl/Str/FormatNumberTest.php

17 lines
291 B
PHP
Raw Normal View History

2019-12-24 01:52:07 +01:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
2019-12-26 23:10:57 +01:00
use Psl\Str;
2019-12-24 01:52:07 +01:00
class FormatNumberTest extends TestCase
{
2019-12-26 23:10:57 +01:00
public function testFormatNumber(): void
{
self::assertSame('487 891,49', Str\format_number(487891.4879, 2, ',', ' '));
}
2019-12-24 01:52:07 +01:00
}